feh/fehbg

16 lines
401 B
Plaintext
Raw Normal View History

#!/bin/sh
2020-03-25 21:13:01 +00:00
_image_dir="$HOME/.config/themes/autumn-fire/image"
_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"
;;
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"
;;
esac