From 82abadcecc7534b4847238ee2a977f33256b0439 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Sun, 26 Jan 2025 11:37:22 +0000 Subject: sh --- scripts/sh/wallpaper | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 scripts/sh/wallpaper (limited to 'scripts/sh/wallpaper') 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)" -- cgit v1.2.1