Regenerated

This commit is contained in:
2026-04-29 15:31:02 +02:00
parent 47a6f1ce30
commit c7aa148a67
4 changed files with 560 additions and 446 deletions
+55 -18
View File
@@ -1398,6 +1398,45 @@ exec socat -U - UNIX-CONNECT:"$SOCK" | while IFS= read -r line; do
done
#+END_SRC
** =generated/.config/awww/scripts/ws-wallpaper.sh=
The script that actually sets wallpaper per workspace
#+BEGIN_SRC sh :tangle generated/.config/awww/scripts/ws-wallpaper.sh :shebang "#!/usr/bin/env bash" :noweb yes :mkdirp yes :eval never
WS=$1
case "$WS" in
0)
awww img /home/henrov/Wallpapers/pictures/10.jpg --transition-type random
;;
1)
awww img /home/henrov/Wallpapers/pictures/01.jpg --transition-type random
;;
2)
awww img /home/henrov/Wallpapers/pictures/02.jpg --transition-type random
;;
3)
awww img /home/henrov/Wallpapers/pictures/03.jpg --transition-type random
;;
4)
awww img /home/henrov/Wallpapers/pictures/04.jpg --transition-type random
;;
5)
awww img /home/henrov/Wallpapers/pictures/05.jpg --transition-type random
;;
6)
awww img /home/henrov/Wallpapers/pictures/06.jpg --transition-type random
;;
7)
awww img /home/henrov/Wallpapers/pictures/07.jpg --transition-type random
;;
8)
awww img /home/henrov/Wallpapers/pictures/08.jpg --transition-type random
;;
9)
awww img /home/henrov/Wallpapers/pictures/09.jpg --transition-type random
;;
esac
#+END_SRC
** =generated/modules/traveldroid/desktop/waybar.nix=
This file installs and configures waybar
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/waybar.nix :noweb yes :mkdirp yes :eval never
@@ -2667,38 +2706,36 @@ animations {
enabled = yes
# ─────────────────────────────
# 🎨 Soft fluid curve (no overshoot, calmer motion)
# 🌊 Smooth fluid motion curve (less snap, more glide)
# ─────────────────────────────
bezier = fluid, 0.18, 0.85, 0.2, 1.0
bezier = fluid, 0.10, 0.85, 0.15, 1.00
# ─────────────────────────────
# 🪟 Windows (primary motion)
# 🪟 Windows (primary UI motion)
# slightly slower + softer entry/exit
# ─────────────────────────────
animation = windows, 1, 7, fluid
animation = windowsOut, 1, 6, fluid, popin 90%
# NOTE:
# windowsIn is usually redundant if windows is set,
# so we omit it for cleaner behavior
animation = windows, 1, 8, fluid
animation = windowsIn, 1, 8, fluid
animation = windowsOut, 1, 7, fluid, popin 90%
# ─────────────────────────────
# 🧭 Workspace switching (core navigation feel)
# 🧭 Workspaces (camera-like movement)
# make this the most “fluid” feeling part
# ─────────────────────────────
animation = workspaces, 1, 6, fluid
animation = workspaces, 1, 7, fluid
# ─────────────────────────────
# 🌫️ Fade (subtle UI layering)
# 🌫️ Fades (keep snappy but soft)
# ─────────────────────────────
animation = fade, 1, 7, fluid
animation = fade, 1, 6, fluid
# ─────────────────────────────
# 🧱 Borders (stable, almost static feel)
# 🧱 Borders (stable, minimal motion)
# ─────────────────────────────
animation = border, 1, 10, default
# Keep angle animation subtle (avoid visual noise)
animation = borderangle, 1, 8, default
animation = border, 1, 10, default
animation = borderangle, 1, 9, fluid
}
#+END_SRC
** =generated/.config/hypr/behaviour.conf=