feh/fehbg

14 lines
272 B
Plaintext
Raw Normal View History

#!/bin/sh
_host=$(hostname)
case $_host in
2021-03-16 18:38:21 +00:00
MachineOne)
2022-12-21 14:16:14 +00:00
feh --no-fehbg --bg-fill --no-xinerama '/home/ray/.dark-souls.jpg'
;;
2021-03-16 18:38:21 +00:00
MachineTwo)
2021-05-09 17:09:32 +00:00
feh --no-fehbg --bg-max --image-bg "#000000" --no-xinerama '/home/ray/.config/feh/alexey-egorov.jpg'
;;
esac
2021-03-16 18:38:21 +00:00
#!/bin/sh