dwm-scripts/wallpapers.sh
2024-08-18 09:57:41 +08:00

20 lines
223 B
Bash
Executable File

setup() {
feh --bg-fill --randomize --no-fehbg ~/Pictures/wallpapers/*.png
}
randomize() {
while true; do
setup
sleep 300
done
}
if [ $1 == "setup" ]
then
setup
elif [ $1 == "rando" ]
then
randomize
fi