From 2dffccd7a359e5032aad544a501f6abdb13db48b Mon Sep 17 00:00:00 2001 From: sudacode Date: Sun, 16 Mar 2025 02:34:55 -0700 Subject: [PATCH] fix wallpaper script --- change-wallpaper.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/change-wallpaper.sh b/change-wallpaper.sh index c8f4b8c..d345536 100755 --- a/change-wallpaper.sh +++ b/change-wallpaper.sh @@ -15,6 +15,8 @@ CURRENT_WALL=$(hyprctl hyprpaper listloaded) # Get a random wallpaper that is not the current one WALLPAPER=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALL")" ! -name "*.json" | shuf -n 1) +# remove double slashes that's there for some reason +WALLPAPER="${WALLPAPER//\/\///}" echo "Changing wallpaper to $WALLPAPER" echo "$WALLPAPER" > "$HOME/.wallpaper"