This repository has been archived on 2024-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
suckless/scripts/wallpapers.sh

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