Init commit

This commit is contained in:
Archie Fox
2025-06-08 06:59:19 +03:00
commit 06b8ee8caf
148 changed files with 18659 additions and 0 deletions

19
.config/hypr/scripts/wall.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Директория с обоями
HOUR="date '+%k'"
if [[ $HOUR -gt 7 && $HOUR -lt 18 ]]; then
WALLPAPER_DIR="$HOME/Pictures/wall/light"
else
WALLPAPER_DIR="$HOME/Pictures/wall/dark"
fi
# Выбор случайного файла
RANDOM_WALLPAPER=$(find "$WALLPAPER_DIR" -type f | shuf -n 1)
# Плавная смена (с анимацией fade)
swww img "$RANDOM_WALLPAPER" \
--transition-type "random" \
--transition-step 2 \
--transition-duration 3 \
--transition-fps 60 # Кадры в секунду \