mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 08:48:27 -05:00
17 lines
332 B
Bash
Executable File
17 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir="$HOME/Pictures/Wallpapers"
|
|
list=$(/usr/bin/ls "${dir}")
|
|
options=""
|
|
|
|
# Destroy running swaybg process
|
|
pkill swaybg
|
|
|
|
for i in $( wlr-randr | grep "\"*.\"" | awk '{print $1}' )
|
|
do
|
|
choice=$(echo "${list}" | shuf -n 1)
|
|
options="${options}--output ${i} --image ${dir}/${choice} --mode fill "
|
|
done
|
|
|
|
swaybg ${options} &
|