9 lines
277 B
Bash
9 lines
277 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
sleep 0.5
|
||
|
|
|
||
|
|
WALLPAPER_DIR="$HOME/Pictures/Wallpaper/"
|
||
|
|
CURRENT_WALLPAPERS=$(hyprctl hyprpaper listloaded)
|
||
|
|
|
||
|
|
WALLPAPER=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALLPAPER")" | grep -v .git | shuf -n 1)
|
||
|
|
hyprctl hyprpaper reload ,"$WALLPAPER"
|