From db46b82f7f0fe7d8bb76246e1e4b9947f4187012 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 15 Mar 2020 18:10:59 -0400 Subject: [PATCH] setbg can take directory arg for random --- .local/bin/setbg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.local/bin/setbg b/.local/bin/setbg index 87096a6..ea5bc14 100755 --- a/.local/bin/setbg +++ b/.local/bin/setbg @@ -4,8 +4,13 @@ # script, if given an argument, moves it there. This script without an # argument sets ~/.config/wall.png as the wallpaper, which is required on login # if you don't want a black screen. +# +# You may also give a directory name to select a random image from that +# directory as a wallpaper. Be careful that the directory only has images. -[ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." +[ -f "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." + +[ -d "$1" ] && mv "$(find "$1" -type f | shuf -n 1)" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Random Wallpaper chosen." # If pywal is installed, use it. type wal >/dev/null 2>&1 && { wal -c ;