aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDonald Williams <129223418+dwilliam62@users.noreply.github.com>2025-12-01 06:58:53 -0500
committerGitHub <noreply@github.com>2025-12-01 06:58:53 -0500
commitf26346e36829d8752e1e69d8f9de098b12165022 (patch)
tree88ac37476733781d6689a88b75dd36649aa728a1
parentca0c23cce006ea3f7d793c5fa8eee6acff196470 (diff)
parentb29221fd0d19ee1e49e4e1744abc2981f0174853 (diff)
Merge pull request #873 from godlyfast/fix-wallpaper-selector-filename-truncation
fix: Fix wallpaper selector showing wrong wallpaper when filename contains dots will display entire filename and extension
-rwxr-xr-xconfig/hypr/UserScripts/WallpaperSelect.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh
index 9e51125f..0029d3e5 100755
--- a/config/hypr/UserScripts/WallpaperSelect.sh
+++ b/config/hypr/UserScripts/WallpaperSelect.sh
@@ -93,7 +93,7 @@ menu() {
fi
printf "%s\x00icon\x1f%s\n" "$pic_name" "$cache_preview_image"
else
- printf "%s\x00icon\x1f%s\n" "$(echo "$pic_name" | cut -d. -f1)" "$pic_path"
+ printf "%s\x00icon\x1f%s\n" "$pic_name" "$pic_path"
fi
done
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage