12 lines
250 B
Bash
12 lines
250 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
wallpapers_path=/home/emge/Wallpapers/
|
||
|
|
||
|
# while true; do
|
||
|
# swaybg -i $(find $wallpapers_path -type f | shuf -n 1) -m fill
|
||
|
# sleep 29m
|
||
|
# done
|
||
|
# sleep 1m
|
||
|
|
||
|
swaymsg output "*" bg $(find $wallpapers_path -type f | shuf -n 1) fill
|