Files
linux_config/hypr/set_wallpaper.sh

9 lines
277 B
Bash
Raw Normal View History

2025-08-20 14:45:50 +02:00
#!/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"