diff --git a/dotfiles/lib/bin/wallpaper.sh b/dotfiles/lib/bin/wallpaper.sh index a560bc3e..15bd9304 100755 --- a/dotfiles/lib/bin/wallpaper.sh +++ b/dotfiles/lib/bin/wallpaper.sh @@ -3,13 +3,13 @@ WALLPAPER_DIR="$HOME/Pictures/wallpaper/" random_paper() { - find "$WALLPAPER_DIR"use -type f | shuf -n1 + find "$WALLPAPER_DIR"use -type l | shuf -n1 } wallpaper() { while true; do feh --bg-center $(random_paper) --bg-scale "$WALLPAPER_DIR"transparent1x1.png - sleep 1m + sleep 10m done }