diff options
| author | Jaƫl Champagne Gareau <gareau_jael@hotmail.com> | 2025-12-30 22:06:25 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-30 22:06:25 -0500 |
| commit | d05f22e5f4e92827ea69911cdd3dfc83c64c655c (patch) | |
| tree | e06b351e620f54654e6562a2d95bd3e0a286ccc8 /config/hypr/scripts/DarkLight.sh | |
| parent | 330a934953fb79c56c60e2520210f8686b4c5459 (diff) | |
fix: respect XDG dir instead of forcing ~/Pictures (#899)
* fix: respect XDG dir instead of forcing ~/Pictures
* fix: make xdg-user-dir usage more robust
---------
Co-authored-by: Donald Williams <129223418+dwilliam62@users.noreply.github.com>
Diffstat (limited to 'config/hypr/scripts/DarkLight.sh')
| -rwxr-xr-x | config/hypr/scripts/DarkLight.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index e473efb2..a225c7bc 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -4,7 +4,8 @@ # Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate directories # Paths -wallpaper_base_path="$HOME/Pictures/wallpapers/Dynamic-Wallpapers" +PICTURES_DIR="$(xdg-user-dir PICTURES 2>/dev/null || echo "$HOME/Pictures")" +wallpaper_base_path="$PICTURES_DIR/wallpapers/Dynamic-Wallpapers" dark_wallpapers="$wallpaper_base_path/Dark" light_wallpapers="$wallpaper_base_path/Light" hypr_config_path="$HOME/.config/hypr" |
