16 lines
473 B
Bash
Executable File
16 lines
473 B
Bash
Executable File
#!/bin/sh
|
|
|
|
_image_dir="$HOME/.config/feh/image"
|
|
_host=$(hostname)
|
|
|
|
case $_host in
|
|
Patricia)
|
|
# order is left, right
|
|
feh --no-fehbg --bg-max "$_image_dir/autumn-fire--slice-center.jpg" "$_image_dir/autumn-fire--slice-right.jpg"
|
|
;;
|
|
Pamela)
|
|
#order of monitors is top, left, right
|
|
feh --no-fehbg --bg-fill "$_image_dir/autumn-fire--slice-center-top.jpg" "$_image_dir/autumn-fire--slice-left-far.jpg" "$_image_dir/autumn-fire--slice-left.jpg"
|
|
;;
|
|
esac
|