12 lines
522 B
Plaintext
12 lines
522 B
Plaintext
|
#.fsdefaults
|
||
|
[ -z "$DISPLAY" ]
|
||
|
:
|
||
|
command -v nitrogen && [ -r "$HOME/.config/nitrogen/bg-saved.cfg" ]
|
||
|
nitrogen --restore
|
||
|
command -v feh && [ -r "$HOME/.fehbg" ]
|
||
|
~/.fehbg
|
||
|
command -v hsetroot && [ -r ~/.config/firestarter/tile.png ] && [ "$(hostname)" == "dsk-cstm-0" ]
|
||
|
hsetroot -tile "$HOME/.config/firestarter/tile.png"
|
||
|
command -v hsetroot && [ -r ~/.config/firestarter/tile.png ] && [ -r ~/.config/firestarter/center.png ]
|
||
|
hsetroot -tile "$HOME/.config/firestarter/tile.png" -center "$HOME/.config/firestarter/center.png"
|