diff options
| author | Donald Williams <129223418+dwilliam62@users.noreply.github.com> | 2025-12-01 06:58:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-01 06:58:53 -0500 |
| commit | f26346e36829d8752e1e69d8f9de098b12165022 (patch) | |
| tree | 88ac37476733781d6689a88b75dd36649aa728a1 | |
| parent | ca0c23cce006ea3f7d793c5fa8eee6acff196470 (diff) | |
| parent | b29221fd0d19ee1e49e4e1744abc2981f0174853 (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-x | config/hypr/UserScripts/WallpaperSelect.sh | 2 |
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 } |
