mahbinstuff/randswaybg.sh
2021-01-31 03:00:29 +02:00

5 lines
188 B
Bash
Executable file

#!/bin/sh
for DISPLAY in $(swaymsg -t get_outputs -r | grep name | cut -d \" -f 4); do
PIC=$(find ~/pix | shuf | head -n 1)
swaybg --output "${DISPLAY}" -i "${PIC}" -m fill &
done