sway: update random wallpaper script to assign different wallpapers per-monitor

This commit is contained in:
Aly Raffauf 2024-04-26 13:17:22 -04:00
parent a6531ffa69
commit 8bf7a0d8b6

View file

@ -10,8 +10,11 @@
if [ -d "$directory" ]; then if [ -d "$directory" ]; then
while true; do while true; do
kill `pidof swaybg` kill `pidof swaybg`
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1) monitor=`${config.wayland.windowManager.sway.package}/bin/swaymsg -t get_outputs -p | grep Output | awk '{print $2}'`
${pkgs.swaybg}/bin/swaybg -i $random_background & for m in ''${monitor[@]}; do
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
${pkgs.swaybg}/bin/swaybg -o $m -i $random_background &
done
sleep 900 sleep 900
done done
fi fi