14 lines
291 B
Bash
Executable File
14 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
_host=$(hostname)
|
|
|
|
case $_host in
|
|
MachineOne)
|
|
feh --no-fehbg --bg-fill --no-xinerama '/home/ray/.config/feh/bladerunner--inset.jpg'
|
|
;;
|
|
MachineTwo)
|
|
feh --no-fehbg --bg-max --image-bg "#000000" --no-xinerama '/home/ray/.config/feh/alexey-egorov.jpg'
|
|
;;
|
|
esac
|
|
#!/bin/sh
|