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"