Regenerated

This commit is contained in:
2026-04-29 14:43:12 +02:00
parent 0bb5e3c9bd
commit ef17679446
14 changed files with 697 additions and 535 deletions
@@ -1,19 +0,0 @@
#!/usr/bin/env bash
# Get active workspace ID
ws=$(hyprctl activeworkspace -j | jq -r '.id')
# Format number with leading zero (01, 02, ...)
num=$(printf "%02d" "$ws")
# Build wallpaper path
wall="$HOME/Wallpapers/pictures/${num}.jpg"
# Check if file exists
if [ -f "$wall" ]; then
# Set wallpaper with smooth transition
awww img "$wall" \
--transition-type wipe \
--transition-duration 0.5 \
--transition-fps 60
fi