scripts/wallpaper.sh
2022-12-28 16:44:03 -05:00

7 lines
169 B
Bash
Executable file

#!/bin/sh
if [ $(($RANDOM%2)) -eq 0 ]; then
feh --bg-center --randomize ~/Pictures/Wallpapers/center/*
else
feh --bg-fill --randomize ~/Pictures/Wallpapers/fill/*
fi