16 lines
401 B
Bash
Executable File
16 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
|
|
_image_dir="$HOME/.config/themes/autumn-fire/image"
|
|
_host=$(hostname)
|
|
|
|
case $_host in
|
|
Patricia)
|
|
# order of monitors: left, right
|
|
feh --no-fehbg --bg-max "$_image_dir/center.jpg" "$_image_dir/right.jpg"
|
|
;;
|
|
Pamela)
|
|
#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
|