From 0434b75fee7d456b6fcb14ee339ddc063655e239 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 29 Sep 2016 20:36:38 -0700 Subject: [PATCH] [Linux] Update wallpaper daemon --- dotfiles/lib/bin/wallpaper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }