2020-03-25 18:21:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-03-25 21:13:01 +00:00
|
|
|
_image_dir="$HOME/.config/themes/autumn-fire/image"
|
2020-03-25 18:21:52 +00:00
|
|
|
_host=$(hostname)
|
|
|
|
|
|
|
|
case $_host in
|
|
|
|
Patricia)
|
2020-03-25 21:13:01 +00:00
|
|
|
# order of monitors: left, right
|
|
|
|
feh --no-fehbg --bg-max "$_image_dir/center.jpg" "$_image_dir/right.jpg"
|
2020-03-25 18:21:52 +00:00
|
|
|
;;
|
|
|
|
Pamela)
|
2020-03-25 21:13:01 +00:00
|
|
|
#order of monitors: top, left, right
|
|
|
|
feh --no-fehbg --bg-fill "$_image_dir/center-top.jpg" "$_image_dir/left-far.jpg" "$_image_dir/left.jpg"
|
2020-03-25 18:21:52 +00:00
|
|
|
;;
|
|
|
|
esac
|