9 lines
195 B
Bash
9 lines
195 B
Bash
#!/bin/sh
|
|
FLAGFILE="$HOME/.cache/spacefm_wallpaper_set"
|
|
|
|
if [ ! -f "$FLAGFILE" ]; then
|
|
spacefm --set-wallpaper /usr/share/cdesktop/wallpapers/chrona25-04.png
|
|
touch "$FLAGFILE"
|
|
fi
|
|
|
|
exit 0
|