From 7d67d9c4d2fb4f31050e55e87349ce2e0568c47f Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Fri, 25 Sep 2020 13:43:25 -0600 Subject: [PATCH] Fixed error in background randomizer script --- bin/desktop/feh/randomize-background.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/desktop/feh/randomize-background.sh b/bin/desktop/feh/randomize-background.sh index 6434312..39542f2 100755 --- a/bin/desktop/feh/randomize-background.sh +++ b/bin/desktop/feh/randomize-background.sh @@ -1,4 +1,4 @@ -$WALLPAPER_DIR="$HOME/.config/wryn/wallpaper"; +WALLPAPER_DIR="$HOME/.config/wryn/wallpaper"; -[ -d $WALLPAPER_DIR ] &&\ - feh --recursive --randomize --bg-fill $WALLPAPER_DIR +[ -d $WALLPAPER_DIR ] \ + && feh --recursive --randomize --bg-fill "$WALLPAPER_DIR";