mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
sway: update random wallpaper script to assign different wallpapers per-monitor
This commit is contained in:
parent
a6531ffa69
commit
8bf7a0d8b6
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue