diff options
Diffstat (limited to 'config/hypr')
| -rw-r--r-- | config/hypr/configs/Execs.conf | 5 | ||||
| -rwxr-xr-x | config/hypr/scripts/PywalSwww.sh | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/config/hypr/configs/Execs.conf b/config/hypr/configs/Execs.conf index 7e25d2a5..4112d8b9 100644 --- a/config/hypr/configs/Execs.conf +++ b/config/hypr/configs/Execs.conf @@ -2,13 +2,16 @@ $scriptsDir = $HOME/.config/hypr/scripts $themes = $HOME/.config/hypr/themes $lock = $scriptsDir/LockScreen.sh +$SwwwRandom = $scriptsDir/WallpaperRandom.sh +$WallpaperPath = $HOME/Pictures/wallpapers # Initial boot script to start Pywal and Set wallpaper. This line and corresponding script can be safely deleted once logged in exec-once = $HOME/.config/hypr/initial-boot.sh # wallpaper stuff exec-once = swww query || swww init -#exec-once = swww query || swww init && swww img $HOME/Pictures/wallpapers/mecha-nostalgia.png #using swww utility +exec-once = $SwwwRandom $WallpaperPath # random wallpaper switcher every 5 minutes +#exec-once = swww query || swww init && swww img $HOME/Pictures/wallpapers/mecha-nostalgia.png # persistent wallpaper # Startup exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP diff --git a/config/hypr/scripts/PywalSwww.sh b/config/hypr/scripts/PywalSwww.sh index 1532878a..3b577d81 100755 --- a/config/hypr/scripts/PywalSwww.sh +++ b/config/hypr/scripts/PywalSwww.sh @@ -17,7 +17,7 @@ for output in "${monitor_outputs[@]}"; do wallpaper_path=$(cat "$cache_file") # Copy the wallpaper to the location Rofi can access - cp "$wallpaper_path" "$HOME/.config/rofi/.current_wallpaper" + ln -sf "$wallpaper_path" "$HOME/.config/rofi/.current_wallpaper" break # Exit the loop after processing the first found monitor output fi |
