blob: a472469ea03bf7c637e7e8c11a603c8f4ed3a0b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
swaybg -i ~/Pictures/nurberg/wallpaperbetter.jpg -m fill
# while true; do
# wall=$(find "$HOME/Pictures/Wallpapers" -type f | shuf -n 1)
# swaybg -i "$wall" -m fill &
# pid=$!
# sleep 600
# kill $pid
# done
|