Regenerated
This commit is contained in:
+453
-409
File diff suppressed because it is too large
Load Diff
+54
-17
@@ -1398,6 +1398,45 @@ exec socat -U - UNIX-CONNECT:"$SOCK" | while IFS= read -r line; do
|
|||||||
done
|
done
|
||||||
#+END_SRC
|
#+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=
|
** =generated/modules/traveldroid/desktop/waybar.nix=
|
||||||
This file installs and configures waybar
|
This file installs and configures waybar
|
||||||
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/waybar.nix :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/waybar.nix :noweb yes :mkdirp yes :eval never
|
||||||
@@ -2667,38 +2706,36 @@ animations {
|
|||||||
enabled = yes
|
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 = windows, 1, 8, fluid
|
||||||
animation = windowsOut, 1, 6, fluid, popin 90%
|
animation = windowsIn, 1, 8, fluid
|
||||||
|
animation = windowsOut, 1, 7, fluid, popin 90%
|
||||||
# NOTE:
|
|
||||||
# windowsIn is usually redundant if windows is set,
|
|
||||||
# so we omit it for cleaner behavior
|
|
||||||
|
|
||||||
# ─────────────────────────────
|
# ─────────────────────────────
|
||||||
# 🧭 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
|
animation = border, 1, 10, default
|
||||||
|
animation = borderangle, 1, 9, fluid
|
||||||
# Keep angle animation subtle (avoid visual noise)
|
|
||||||
animation = borderangle, 1, 8, default
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/.config/hypr/behaviour.conf=
|
** =generated/.config/hypr/behaviour.conf=
|
||||||
|
|||||||
+36
@@ -0,0 +1,36 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
|
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
|
||||||
@@ -3,35 +3,32 @@ animations {
|
|||||||
enabled = yes
|
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 = windows, 1, 8, fluid
|
||||||
animation = windowsOut, 1, 6, fluid, popin 90%
|
animation = windowsIn, 1, 8, fluid
|
||||||
|
animation = windowsOut, 1, 7, fluid, popin 90%
|
||||||
# NOTE:
|
|
||||||
# windowsIn is usually redundant if windows is set,
|
|
||||||
# so we omit it for cleaner behavior
|
|
||||||
|
|
||||||
# ─────────────────────────────
|
# ─────────────────────────────
|
||||||
# 🧭 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
|
animation = border, 1, 10, default
|
||||||
|
animation = borderangle, 1, 9, fluid
|
||||||
# Keep angle animation subtle (avoid visual noise)
|
|
||||||
animation = borderangle, 1, 8, default
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user