diff options
author | George Abbott <george@gabbott.dev> | 2025-01-26 11:37:22 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2025-01-26 11:37:22 +0000 |
commit | 82abadcecc7534b4847238ee2a977f33256b0439 (patch) | |
tree | ad8752c1dc9914829e80bc2f3f1a45dfec8f4b4a /scripts/sh/wallpaper | |
parent | bac748dbe8c28cf1ed3b387b24f89ffe5a58ffc9 (diff) |
sh
Diffstat (limited to 'scripts/sh/wallpaper')
-rwxr-xr-x | scripts/sh/wallpaper | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/sh/wallpaper b/scripts/sh/wallpaper new file mode 100755 index 0000000..ec1fe1a --- /dev/null +++ b/scripts/sh/wallpaper @@ -0,0 +1,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)" |