configuration.nix/packages/scripts/chpaper.sh

24 lines
631 B
Bash
Raw Normal View History

2023-04-06 03:29:01 +05:30
#!/bin/sh
set -eu
2023-05-13 00:32:03 +05:30
DIR="${1:-}"
if [ -z "$DIR" ]; then
echo "Usage: $0 <path to directory containing wallpapers>"
exit 1
fi
2023-04-06 03:29:01 +05:30
random_paper() {
if [ -d "$DIR" ] ; then
2023-10-18 22:00:44 +05:30
find -L "${DIR}"/ -type f -regextype egrep -regex ".*\.(jpe?g|png)$" | shuf -n1 --random-source=/dev/urandom
elif [ -f "$DIR" ] ; then
echo "$DIR"
fi
2023-04-06 03:29:01 +05:30
}
2023-05-18 16:06:40 +05:30
swww query || swww init
2023-11-04 15:30:17 +05:30
convert "$(random_paper)" /tmp/wallpaper.jpg && swww img --transition-step 2 --transition-type random --transition-duration 1 "/tmp/wallpaper.jpg"
2023-04-06 03:29:01 +05:30
convert "$(random_paper)" /tmp/lockpaper.jpg
2023-05-18 16:06:40 +05:30
notify-send -r 9897 -i information -t 1000 "Wallpaper" "Wallpaper changed."