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)
|
2025-12-30 18:54:38 +01:00
|
|
|
echo $WALLPAPER
|
|
|
|
|
hyprctl hyprpaper wallpaper "eDP-1, $WALLPAPER ,"
|
|
|
|
|
hyprctl hyprpaper wallpaper "HDMI-A-1, $WALLPAPER ,"
|