mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
sway-randomWallpaper: fixed flickering delaying killing old swaybg instances
This commit is contained in:
parent
fc2877381f
commit
348a41e07f
|
@ -12,20 +12,24 @@
|
||||||
|
|
||||||
if [ -d "$directory" ]; then
|
if [ -d "$directory" ]; then
|
||||||
while true; do
|
while true; do
|
||||||
for pid in ''${OLD_PIDS[@]}; do
|
NEW_PIDS=()
|
||||||
kill $pid
|
|
||||||
done
|
|
||||||
|
|
||||||
OLD_PIDS=()
|
|
||||||
|
|
||||||
monitor=`${config.wayland.windowManager.sway.package}/bin/swaymsg -t get_outputs -p | grep Output | awk '{print $2}'`
|
monitor=`${config.wayland.windowManager.sway.package}/bin/swaymsg -t get_outputs -p | grep Output | awk '{print $2}'`
|
||||||
for m in ''${monitor[@]}; do
|
for m in ''${monitor[@]}; do
|
||||||
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
|
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
|
||||||
${pkgs.swaybg}/bin/swaybg -o $m -i $random_background &
|
${pkgs.swaybg}/bin/swaybg -o $m -i $random_background &
|
||||||
OLD_PIDS+=($!)
|
NEW_PIDS+=($!)
|
||||||
done
|
done
|
||||||
|
|
||||||
sleep 900
|
sleep 5
|
||||||
|
|
||||||
|
for pid in ''${OLD_PIDS[@]}; do
|
||||||
|
kill $pid
|
||||||
|
done
|
||||||
|
|
||||||
|
OLD_PIDS=$NEW_PIDS
|
||||||
|
|
||||||
|
sleep 895
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue