diff options
| author | SuJin353 <131243461+SuJin353@users.noreply.github.com> | 2024-09-27 11:28:10 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-27 11:28:10 +0700 |
| commit | 10566db5346f0a9a59a7fb3b717289cceb903e60 (patch) | |
| tree | 9aedbbe5bb4362bbf2f63794581ceb73fc40c9b7 /config | |
| parent | ccba7a1ef604b509e8a371d2f91f54edc4dc8397 (diff) | |
Update DarkLight.sh
Diffstat (limited to 'config')
| -rwxr-xr-x | config/hypr/scripts/DarkLight.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index d34f5cfc..3b9afabb 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -115,9 +115,9 @@ current_wallpaper=$(swww query | awk -F'/' '{print $NF}' | awk '{print $1}') # Set Dynamic Wallpaper for Dark or Light Mode if [ "$next_mode" = "Dark" ] && [ -f "$light_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark" + next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark}" elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$light_wallpapers/$current_wallpaper/Dark/Light" + next_wallpaper="$light_wallpapers/${current_wallpaper/Dark/Light}" else if [ "$next_mode" = "Dark" ]; then next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" |
