This commit is contained in:
Ray Elliott 2021-03-16 18:38:21 +00:00
parent f0678e96e5
commit a9722a8f41
1 changed files with 5 additions and 7 deletions

12
fehbg
View File

@ -1,15 +1,13 @@
#!/bin/sh #!/bin/sh
_image_dir="$HOME/.config/themes/autumn-fire/image"
_host=$(hostname) _host=$(hostname)
case $_host in case $_host in
Patricia) MachineOne)
# order of monitors: left, right feh --no-fehbg --bg-fill --no-xinerama '/home/ray/.config/feh/bladerunner--inset.jpg
feh --no-fehbg --bg-max "$_image_dir/center.jpg" "$_image_dir/right.jpg"
;; ;;
Pamela) MachineTwo)
#order of monitors: top, left, right # TODO
feh --no-fehbg --bg-fill "$_image_dir/center-top.jpg" "$_image_dir/left-far.jpg" "$_image_dir/left.jpg"
;; ;;
esac esac
#!/bin/sh