From 84741d9e7a3b78fb5e7bd38da91b1ca9fe3f748b Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 27 Dec 2023 21:49:15 -0600 Subject: [PATCH] refactor(hypr): improve handling of swww launcher --- dots/.config/hypr/scripts/launchers/launch-swww.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/hypr/scripts/launchers/launch-swww.bash b/dots/.config/hypr/scripts/launchers/launch-swww.bash index 2c7728ca..d1cd6852 100755 --- a/dots/.config/hypr/scripts/launchers/launch-swww.bash +++ b/dots/.config/hypr/scripts/launchers/launch-swww.bash @@ -51,11 +51,11 @@ init() { until swww init; do sleep .1 done + log "swww daemon started" } main() { init - log "swww daemon running, setting wallpapers" while :; do while IFS= read -r line do @@ -65,7 +65,7 @@ main() { sleep .1 done < <(swww query) sleep .5 - swww init + init done }