dotfiles/.config/hypr/scripts/changewallpaper
2025-02-13 10:25:15 -07:00

14 lines
330 B
Bash
Executable File

#!/bin/bash
DIR=$HOME/.config/hypr/bg
random_wallpaper=$(find $DIR -type f | sort -R | head -1)
# Terminate already running bar instances
killall -q swaybg
# Wait until the processes have been shut down
while pgrep -x swaybg >/dev/null; do sleep 1; done
swaybg -m fill -i $random_wallpaper &
notify-send "$random_wallpaper" &