FollieHiyuki-dotfiles/home/.local/bin/Wayland/swaywpp
2021-02-13 19:28:59 +03:00

11 lines
258 B
Bash
Executable File

#!/bin/sh
dir="$HOME/Pictures/Wallpapers"
list=$(/usr/bin/ls "$dir")
for i in $( swaymsg -t get_outputs | grep "name" | awk '{print $2}' | sed s/\"//g | sed s/,//g )
do
choice=$(echo "$list" | shuf -n 1)
swaymsg output "$i" bg "$dir/$choice" fill
done