mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -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
|
||||
while true; do
|
||||
kill `pidof swaybg`
|
||||
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
|
||||
${pkgs.swaybg}/bin/swaybg -i $random_background &
|
||||
monitor=`${config.wayland.windowManager.sway.package}/bin/swaymsg -t get_outputs -p | grep Output | awk '{print $2}'`
|
||||
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
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue