blob: ec1fe1a934591728dc42454364075086f34a6ebe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Load background. This is loaded as a random file from $HOME/bg/.
# Run: wallpaper &.
# wallpaper ls :: list all wallpapers.
# wallpaper pick :: select a wallpaper. (do not detach with &)
list() {
eza -al "$HOME/bg"
}
pick() {
file="$(find "$HOME/bg" -type f | $FUZZY)"
[ -z "$file" ] && exit 0
swaybg -i "$file" & # Must detach process here, as process must be owned to select.
}
[ -z "$FUZZY" ] && echo "FUZZY not set" && exit
[ "$1" = "ls" ] && list && exit 0
[ "$1" = "pick" ] && pick && exit 0
swaybg -i "$(find "$HOME/bg" -type f | shuf -n 1)"
|