diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-07-02 15:57:03 -0400 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-07-02 15:57:03 -0400 |
| commit | 4166fc30fb567f95c3513ede44f0e117448c0e5f (patch) | |
| tree | d7eecab0f6a5e367c6eba911cd8f758b7eb03172 /config | |
| parent | fed1837fbdcc2acedbb8d6246a2601b26ad40369 (diff) | |
Fixed animation files
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch main
Your branch is up to date with 'origin/main'.
Changes to be committed:
modified: config/hypr/animations/00-default.conf
modified: config/hypr/animations/00-default.lua
modified: config/hypr/animations/01-default - v2.conf
modified: config/hypr/animations/01-default - v2.lua
modified: config/hypr/animations/END-4.conf
modified: config/hypr/animations/END-4.lua
modified: config/hypr/animations/HYDE - default.conf
modified: config/hypr/animations/HYDE - default.lua
modified: config/hypr/animations/HYDE - minimal-1.conf
modified: config/hypr/animations/HYDE - minimal-1.lua
modified: config/hypr/animations/HYDE - optimized.conf
modified: config/hypr/animations/HYDE - optimized.lua
modified: config/hypr/animations/ML4W - classic.conf
modified: config/hypr/animations/ML4W - classic.lua
modified: config/hypr/animations/ML4W - dynamic.conf
modified: config/hypr/animations/ML4W - dynamic.lua
modified: config/hypr/animations/ML4W - fast.conf
modified: config/hypr/animations/ML4W - fast.lua
modified: config/hypr/animations/ML4W - high.conf
modified: config/hypr/animations/ML4W - high.lua
modified: config/hypr/animations/ML4W - moving.conf
modified: config/hypr/animations/ML4W - moving.lua
modified: config/hypr/animations/ML4W - standard.conf
modified: config/hypr/animations/ML4W - standard.lua
modified: config/hypr/animations/Mahaveer - me-1.conf
modified: config/hypr/animations/Mahaveer - me-1.lua
modified: config/hypr/animations/Mahaveer - me-2.conf
modified: config/hypr/animations/Mahaveer - me-2.lua
Diffstat (limited to 'config')
28 files changed, 118 insertions, 113 deletions
diff --git a/config/hypr/animations/00-default.conf b/config/hypr/animations/00-default.conf index f2d33d93..41ca0efb 100644 --- a/config/hypr/animations/00-default.conf +++ b/config/hypr/animations/00-default.conf @@ -3,13 +3,13 @@ animations { enabled = yes - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 - bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = overshot, 0.05, 0.9, 0.1, 1.00 bezier = smoothOut, 0.5, 0, 0.99, 0.99 - bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + bezier = smoothIn, 0.5, 0.0, 0.68, 1.0 animation = windows, 1, 6, wind, slide animation = windowsIn, 1, 5, winIn, slide @@ -23,4 +23,4 @@ animations { # animations for -git or version >0.42.0 animation = workspacesIn, 1, 5, winIn, slide animation = workspacesOut, 1, 5, winOut, slide -}
\ No newline at end of file +} diff --git a/config/hypr/animations/00-default.lua b/config/hypr/animations/00-default.lua index ee629c96..d28ba5a1 100644 --- a/config/hypr/animations/00-default.lua +++ b/config/hypr/animations/00-default.lua @@ -6,13 +6,13 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.curve("smoothOut", { type = "bezier", points = { { 0.5, 0 }, { 0.99, 0.99 } } }) -hl.curve("smoothIn", { type = "bezier", points = { { 0.5, -0.5 }, { 0.68, 1.5 } } }) +hl.curve("smoothIn", { type = "bezier", points = { { 0.5, 0.0 }, { 0.68, 1.0 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) hl.animation({ leaf = "windowsIn", enabled = true, speed = 5, bezier = "winIn", style = "slide" }) diff --git a/config/hypr/animations/01-default - v2.conf b/config/hypr/animations/01-default - v2.conf index 7ba66b79..018e375e 100644 --- a/config/hypr/animations/01-default - v2.conf +++ b/config/hypr/animations/01-default - v2.conf @@ -5,16 +5,16 @@ animations { enabled = yes - bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + bezier = myBezier, 0.05, 0.9, 0.1, 1.00 bezier = linear, 0.0, 0.0, 1.0, 1.0 - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = slow, 0, 0.85, 0.3, 1 - bezier = overshot, 0.7, 0.6, 0.1, 1.1 - bezier = bounce, 1.1, 1.6, 0.1, 0.85 - bezier = sligshot, 1, -1, 0.15, 1.25 - bezier = nice, 0, 6.9, 0.5, -4.20 + bezier = overshot, 0.7, 0.6, 0.1, 1.0 + bezier = bounce, 1.0, 1.0, 0.1, 0.85 + bezier = sligshot, 1, 0.0, 0.15, 1.00 + bezier = nice, 0, 1.0, 0.5, 0.00 animation = windowsIn, 1, 5, slow, popin animation = windowsOut, 1, 5, winOut, popin @@ -24,4 +24,4 @@ animations { animation = fade, 1, 5, overshot animation = workspaces, 1, 5, wind animation = windows, 1, 5, bounce, popin -}
\ No newline at end of file +} diff --git a/config/hypr/animations/01-default - v2.lua b/config/hypr/animations/01-default - v2.lua index 1de8fab5..af12ecfe 100644 --- a/config/hypr/animations/01-default - v2.lua +++ b/config/hypr/animations/01-default - v2.lua @@ -6,16 +6,16 @@ hl.config({ }, }) -hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.curve("linear", { type = "bezier", points = { { 0.0, 0.0 }, { 1.0, 1.0 } } }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("slow", { type = "bezier", points = { { 0, 0.85 }, { 0.3, 1 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.7, 0.6 }, { 0.1, 1.1 } } }) -hl.curve("bounce", { type = "bezier", points = { { 1.1, 1.6 }, { 0.1, 0.85 } } }) -hl.curve("sligshot", { type = "bezier", points = { { 1, -1 }, { 0.15, 1.25 } } }) -hl.curve("nice", { type = "bezier", points = { { 0, 6.9 }, { 0.5, -4.20 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.7, 0.6 }, { 0.1, 1.0 } } }) +hl.curve("bounce", { type = "bezier", points = { { 1.0, 1.0 }, { 0.1, 0.85 } } }) +hl.curve("sligshot", { type = "bezier", points = { { 1, 0.0 }, { 0.15, 1.00 } } }) +hl.curve("nice", { type = "bezier", points = { { 0, 1.0 }, { 0.5, 0.00 } } }) hl.animation({ leaf = "windowsIn", enabled = true, speed = 5, bezier = "slow", style = "popin" }) hl.animation({ leaf = "windowsOut", enabled = true, speed = 5, bezier = "winOut", style = "popin" }) diff --git a/config/hypr/animations/END-4.conf b/config/hypr/animations/END-4.conf index 394a0a1a..dbab1e02 100644 --- a/config/hypr/animations/END-4.conf +++ b/config/hypr/animations/END-4.conf @@ -8,11 +8,11 @@ animations { # Animation curves bezier = linear, 0, 0, 1, 1 - bezier = md3_standard, 0.2, 0, 0, 1 - bezier = md3_decel, 0.05, 0.7, 0.1, 1 - bezier = md3_accel, 0.3, 0, 0.8, 0.15 - bezier = overshot, 0.05, 0.9, 0.1, 1.1 - bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = md1_standard, 0.2, 0, 0, 1 + bezier = md1_decel, 0.05, 0.7, 0.1, 1 + bezier = md1_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.0 + bezier = crazyshot, 0.1, 1.0, 0.76, 0.92 bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 bezier = menu_decel, 0.1, 1, 0, 1 bezier = menu_accel, 0.38, 0.04, 1, 0.07 @@ -20,7 +20,9 @@ animations { bezier = easeOutCirc, 0, 0.55, 0.45, 1 bezier = easeOutExpo, 0.16, 1, 0.3, 1 bezier = softAcDecel, 0.26, 0.26, 0.15, 1 - bezier = md2, 0.4, 0, 0.2, 1 # use with .2s duration + bezier = md1, 0.4, 0, 0.2, 1 # use with .2s duration + bezier = md3_decel, 0.05, 0.7, 0.1, 1 + bezier = md3_accel, 0.3, 0, 0.8, 0.15 # Animation configs animation = windows, 1, 3, md3_decel, popin 60% animation = windowsIn, 1, 3, md3_decel, popin 60% diff --git a/config/hypr/animations/END-4.lua b/config/hypr/animations/END-4.lua index ba110519..1cc5ded9 100644 --- a/config/hypr/animations/END-4.lua +++ b/config/hypr/animations/END-4.lua @@ -10,8 +10,8 @@ hl.curve("linear", { type = "bezier", points = { { 0, 0 }, { 1, 1 } } }) hl.curve("md3_standard", { type = "bezier", points = { { 0.2, 0 }, { 0, 1 } } }) hl.curve("md3_decel", { type = "bezier", points = { { 0.05, 0.7 }, { 0.1, 1 } } }) hl.curve("md3_accel", { type = "bezier", points = { { 0.3, 0 }, { 0.8, 0.15 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.1 } } }) -hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.5 }, { 0.76, 0.92 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) +hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.0 }, { 0.76, 0.92 } } }) hl.curve("hyprnostretch", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) hl.curve("menu_decel", { type = "bezier", points = { { 0.1, 1 }, { 0, 1 } } }) hl.curve("menu_accel", { type = "bezier", points = { { 0.38, 0.04 }, { 1, 0.07 } } }) diff --git a/config/hypr/animations/HYDE - default.conf b/config/hypr/animations/HYDE - default.conf index 981414fd..51c20a5b 100644 --- a/config/hypr/animations/HYDE - default.conf +++ b/config/hypr/animations/HYDE - default.conf @@ -5,9 +5,9 @@ animations { enabled = yes - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 animation = windows, 1, 6, wind, slide animation = windowsIn, 1, 6, winIn, slide diff --git a/config/hypr/animations/HYDE - default.lua b/config/hypr/animations/HYDE - default.lua index e9d63be7..9bcbad6d 100644 --- a/config/hypr/animations/HYDE - default.lua +++ b/config/hypr/animations/HYDE - default.lua @@ -6,9 +6,9 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) diff --git a/config/hypr/animations/HYDE - minimal-1.conf b/config/hypr/animations/HYDE - minimal-1.conf index 909f7140..81264f3a 100644 --- a/config/hypr/animations/HYDE - minimal-1.conf +++ b/config/hypr/animations/HYDE - minimal-1.conf @@ -8,9 +8,9 @@ animations { # █▄▄ █▀▀ ▀█ █ █▀▀ █▀█ █▀▀ █░█ █▀█ █░█ █▀▀ # █▄█ ██▄ █▄ █ ██▄ █▀▄ █▄▄ █▄█ █▀▄ ▀▄▀ ██▄ - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 diff --git a/config/hypr/animations/HYDE - minimal-1.lua b/config/hypr/animations/HYDE - minimal-1.lua index 9d8b4d6b..53530f57 100644 --- a/config/hypr/animations/HYDE - minimal-1.lua +++ b/config/hypr/animations/HYDE - minimal-1.lua @@ -6,9 +6,9 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) diff --git a/config/hypr/animations/HYDE - optimized.conf b/config/hypr/animations/HYDE - optimized.conf index e325b635..51c1a291 100644 --- a/config/hypr/animations/HYDE - optimized.conf +++ b/config/hypr/animations/HYDE - optimized.conf @@ -7,13 +7,13 @@ animations { enabled = true bezier = wind, 0.05, 0.85, 0.03, 0.97 bezier = winIn, 0.07, 0.88, 0.04, 0.99 - bezier = winOut, 0.20, -0.15, 0, 1 + bezier = winOut, 0.20, 0.00, 0, 1 bezier = liner, 1, 1, 1, 1 - bezier = md3_standard, 0.12, 0, 0, 1 - bezier = md3_decel, 0.05, 0.80, 0.10, 0.97 - bezier = md3_accel, 0.20, 0, 0.80, 0.08 - bezier = overshot, 0.05, 0.85, 0.07, 1.04 - bezier = crazyshot, 0.1, 1.22, 0.68, 0.98 + bezier = md1_standard, 0.12, 0, 0, 1 + bezier = md1_decel, 0.05, 0.80, 0.10, 0.97 + bezier = md1_accel, 0.20, 0, 0.80, 0.08 + bezier = overshot, 0.05, 0.85, 0.07, 1.00 + bezier = crazyshot, 0.1, 1.00, 0.68, 0.98 bezier = hyprnostretch, 0.05, 0.82, 0.03, 0.94 bezier = menu_decel, 0.05, 0.82, 0, 1 bezier = menu_accel, 0.20, 0, 0.82, 0.10 @@ -21,9 +21,10 @@ animations { bezier = easeOutCirc, 0, 0.48, 0.38, 1 bezier = easeOutExpo, 0.10, 0.94, 0.23, 0.98 bezier = softAcDecel, 0.20, 0.20, 0.15, 1 - bezier = md2, 0.30, 0, 0.15, 1 + bezier = md1, 0.30, 0, 0.15, 1 + bezier = md3_decel, 0.05, 0.80, 0.10, 0.97 - bezier = OutBack, 0.28, 1.40, 0.58, 1 + bezier = OutBack, 0.28, 1.00, 0.58, 1 bezier = easeInOutCirc, 0.78, 0, 0.15, 1 animation = border, 1, 1.6, liner diff --git a/config/hypr/animations/HYDE - optimized.lua b/config/hypr/animations/HYDE - optimized.lua index 124542d9..7e48ca86 100644 --- a/config/hypr/animations/HYDE - optimized.lua +++ b/config/hypr/animations/HYDE - optimized.lua @@ -8,13 +8,13 @@ hl.config({ hl.curve("wind", { type = "bezier", points = { { 0.05, 0.85 }, { 0.03, 0.97 } } }) hl.curve("winIn", { type = "bezier", points = { { 0.07, 0.88 }, { 0.04, 0.99 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.20, -0.15 }, { 0, 1 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.20, 0.00 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.curve("md3_standard", { type = "bezier", points = { { 0.12, 0 }, { 0, 1 } } }) hl.curve("md3_decel", { type = "bezier", points = { { 0.05, 0.80 }, { 0.10, 0.97 } } }) hl.curve("md3_accel", { type = "bezier", points = { { 0.20, 0 }, { 0.80, 0.08 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.85 }, { 0.07, 1.04 } } }) -hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.22 }, { 0.68, 0.98 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.85 }, { 0.07, 1.00 } } }) +hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.00 }, { 0.68, 0.98 } } }) hl.curve("hyprnostretch", { type = "bezier", points = { { 0.05, 0.82 }, { 0.03, 0.94 } } }) hl.curve("menu_decel", { type = "bezier", points = { { 0.05, 0.82 }, { 0, 1 } } }) hl.curve("menu_accel", { type = "bezier", points = { { 0.20, 0 }, { 0.82, 0.10 } } }) @@ -23,7 +23,7 @@ hl.curve("easeOutCirc", { type = "bezier", points = { { 0, 0.48 }, { 0.38, 1 } } hl.curve("easeOutExpo", { type = "bezier", points = { { 0.10, 0.94 }, { 0.23, 0.98 } } }) hl.curve("softAcDecel", { type = "bezier", points = { { 0.20, 0.20 }, { 0.15, 1 } } }) hl.curve("md2", { type = "bezier", points = { { 0.30, 0 }, { 0.15, 1 } } }) -hl.curve("OutBack", { type = "bezier", points = { { 0.28, 1.40 }, { 0.58, 1 } } }) +hl.curve("OutBack", { type = "bezier", points = { { 0.28, 1.00 }, { 0.58, 1 } } }) hl.curve("easeInOutCirc", { type = "bezier", points = { { 0.78, 0 }, { 0.15, 1 } } }) hl.animation({ leaf = "border", enabled = true, speed = 1.6, bezier = "liner" }) diff --git a/config/hypr/animations/ML4W - classic.conf b/config/hypr/animations/ML4W - classic.conf index 7f697afd..77f32290 100644 --- a/config/hypr/animations/ML4W - classic.conf +++ b/config/hypr/animations/ML4W - classic.conf @@ -5,7 +5,7 @@ animations { enabled = true - bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + bezier = myBezier, 0.05, 0.9, 0.1, 1.00 animation = windows, 1, 7, myBezier animation = windowsOut, 1, 7, default, popin 80% animation = border, 1, 10, default diff --git a/config/hypr/animations/ML4W - classic.lua b/config/hypr/animations/ML4W - classic.lua index 76bfb491..a77e4334 100644 --- a/config/hypr/animations/ML4W - classic.lua +++ b/config/hypr/animations/ML4W - classic.lua @@ -6,7 +6,7 @@ hl.config({ }, }) -hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 7, bezier = "myBezier" }) hl.animation({ leaf = "windowsOut", enabled = true, speed = 7, bezier = "default", style = "popin 80%" }) diff --git a/config/hypr/animations/ML4W - dynamic.conf b/config/hypr/animations/ML4W - dynamic.conf index 7c98675d..a2d65eaf 100644 --- a/config/hypr/animations/ML4W - dynamic.conf +++ b/config/hypr/animations/ML4W - dynamic.conf @@ -5,9 +5,9 @@ animations { enabled = true - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 animation = windows, 1, 6, wind, slide animation = windowsIn, 1, 6, winIn, slide diff --git a/config/hypr/animations/ML4W - dynamic.lua b/config/hypr/animations/ML4W - dynamic.lua index 13580c7b..fbb86797 100644 --- a/config/hypr/animations/ML4W - dynamic.lua +++ b/config/hypr/animations/ML4W - dynamic.lua @@ -6,9 +6,9 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) diff --git a/config/hypr/animations/ML4W - fast.conf b/config/hypr/animations/ML4W - fast.conf index ce586478..4d4283cc 100644 --- a/config/hypr/animations/ML4W - fast.conf +++ b/config/hypr/animations/ML4W - fast.conf @@ -6,19 +6,20 @@ animations { enabled = true bezier = linear, 0, 0, 1, 1 - bezier = md3_standard, 0.2, 0, 0, 1 - bezier = md3_decel, 0.05, 0.7, 0.1, 1 - bezier = md3_accel, 0.3, 0, 0.8, 0.15 - bezier = overshot, 0.05, 0.9, 0.1, 1.1 - bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = md1_standard, 0.2, 0, 0, 1 + bezier = md1_decel, 0.05, 0.7, 0.1, 1 + bezier = md1_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.0 + bezier = crazyshot, 0.1, 1.0, 0.76, 0.92 bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 bezier = fluent_decel, 0.1, 1, 0, 1 bezier = easeInOutCirc, 0.85, 0, 0.15, 1 bezier = easeOutCirc, 0, 0.55, 0.45, 1 bezier = easeOutExpo, 0.16, 1, 0.3, 1 + bezier = md3_decel, 0.05, 0.7, 0.1, 1 animation = windows, 1, 3, md3_decel, popin 60% animation = border, 1, 10, default animation = fade, 1, 2.5, md3_decel animation = workspaces, 1, 3.5, easeOutExpo, slide animation = specialWorkspace, 1, 3, md3_decel, slidevert -}
\ No newline at end of file +} diff --git a/config/hypr/animations/ML4W - fast.lua b/config/hypr/animations/ML4W - fast.lua index 3f628a20..f8560c89 100644 --- a/config/hypr/animations/ML4W - fast.lua +++ b/config/hypr/animations/ML4W - fast.lua @@ -10,8 +10,8 @@ hl.curve("linear", { type = "bezier", points = { { 0, 0 }, { 1, 1 } } }) hl.curve("md3_standard", { type = "bezier", points = { { 0.2, 0 }, { 0, 1 } } }) hl.curve("md3_decel", { type = "bezier", points = { { 0.05, 0.7 }, { 0.1, 1 } } }) hl.curve("md3_accel", { type = "bezier", points = { { 0.3, 0 }, { 0.8, 0.15 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.1 } } }) -hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.5 }, { 0.76, 0.92 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) +hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.0 }, { 0.76, 0.92 } } }) hl.curve("hyprnostretch", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) hl.curve("fluent_decel", { type = "bezier", points = { { 0.1, 1 }, { 0, 1 } } }) hl.curve("easeInOutCirc", { type = "bezier", points = { { 0.85, 0 }, { 0.15, 1 } } }) diff --git a/config/hypr/animations/ML4W - high.conf b/config/hypr/animations/ML4W - high.conf index bc38fc66..b5fdba08 100644 --- a/config/hypr/animations/ML4W - high.conf +++ b/config/hypr/animations/ML4W - high.conf @@ -5,9 +5,9 @@ animations { enabled = true - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 animation = windows, 1, 6, wind, slide animation = windowsIn, 1, 6, winIn, slide diff --git a/config/hypr/animations/ML4W - high.lua b/config/hypr/animations/ML4W - high.lua index 3a0855ce..8b379167 100644 --- a/config/hypr/animations/ML4W - high.lua +++ b/config/hypr/animations/ML4W - high.lua @@ -6,9 +6,9 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) diff --git a/config/hypr/animations/ML4W - moving.conf b/config/hypr/animations/ML4W - moving.conf index deb6ad32..fda1e376 100644 --- a/config/hypr/animations/ML4W - moving.conf +++ b/config/hypr/animations/ML4W - moving.conf @@ -6,9 +6,9 @@ animations { enabled = true - bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = overshot, 0.05, 0.9, 0.1, 1.00 bezier = smoothOut, 0.5, 0, 0.99, 0.99 - bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + bezier = smoothIn, 0.5, 0.0, 0.68, 1.0 animation = windows, 1, 5, overshot, slide animation = windowsOut, 1, 3, smoothOut animation = windowsIn, 1, 3, smoothOut diff --git a/config/hypr/animations/ML4W - moving.lua b/config/hypr/animations/ML4W - moving.lua index 6fadc3e0..e00b6328 100644 --- a/config/hypr/animations/ML4W - moving.lua +++ b/config/hypr/animations/ML4W - moving.lua @@ -6,9 +6,9 @@ hl.config({ }, }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.curve("smoothOut", { type = "bezier", points = { { 0.5, 0 }, { 0.99, 0.99 } } }) -hl.curve("smoothIn", { type = "bezier", points = { { 0.5, -0.5 }, { 0.68, 1.5 } } }) +hl.curve("smoothIn", { type = "bezier", points = { { 0.5, 0.0 }, { 0.68, 1.0 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 5, bezier = "overshot", style = "slide" }) hl.animation({ leaf = "windowsOut", enabled = true, speed = 3, bezier = "smoothOut" }) diff --git a/config/hypr/animations/ML4W - standard.conf b/config/hypr/animations/ML4W - standard.conf index 7a18c604..57844bd8 100644 --- a/config/hypr/animations/ML4W - standard.conf +++ b/config/hypr/animations/ML4W - standard.conf @@ -5,7 +5,7 @@ animations { enabled = true - bezier = myBezier, 0.05, 0.9, 0.1, 1.05 + bezier = myBezier, 0.05, 0.9, 0.1, 1.00 animation = windows, 1, 7, myBezier animation = windowsOut, 1, 7, default, popin 80% animation = border, 1, 10, default diff --git a/config/hypr/animations/ML4W - standard.lua b/config/hypr/animations/ML4W - standard.lua index 04290074..acff701b 100644 --- a/config/hypr/animations/ML4W - standard.lua +++ b/config/hypr/animations/ML4W - standard.lua @@ -6,7 +6,7 @@ hl.config({ }, }) -hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 7, bezier = "myBezier" }) hl.animation({ leaf = "windowsOut", enabled = true, speed = 7, bezier = "default", style = "popin 80%" }) diff --git a/config/hypr/animations/Mahaveer - me-1.conf b/config/hypr/animations/Mahaveer - me-1.conf index 8db554b0..fcd26642 100644 --- a/config/hypr/animations/Mahaveer - me-1.conf +++ b/config/hypr/animations/Mahaveer - me-1.conf @@ -6,16 +6,16 @@ animations { enabled = true # Animation curves - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 # bezier = linear, 0, 0, 1, 1 - bezier = md3_standard, 0.2, 0, 0, 1 - bezier = md3_decel, 0.05, 0.7, 0.1, 1 - bezier = md3_accel, 0.3, 0, 0.8, 0.15 - bezier = overshot, 0.05, 0.9, 0.1, 1.1 - bezier = crazyshot, 0.1, 1.5, 0.76, 0.92 + bezier = md1_standard, 0.2, 0, 0, 1 + bezier = md1_decel, 0.05, 0.7, 0.1, 1 + bezier = md1_accel, 0.3, 0, 0.8, 0.15 + bezier = overshot, 0.05, 0.9, 0.1, 1.0 + bezier = crazyshot, 0.1, 1.0, 0.76, 0.92 bezier = hyprnostretch, 0.05, 0.9, 0.1, 1.0 bezier = menu_decel, 0.1, 1, 0, 1 bezier = menu_accel, 0.38, 0.04, 1, 0.07 @@ -23,7 +23,8 @@ animations { bezier = easeOutCirc, 0, 0.55, 0.45, 1 bezier = easeOutExpo, 0.16, 1, 0.3, 1 bezier = softAcDecel, 0.26, 0.26, 0.15, 1 - bezier = md2, 0.4, 0, 0.2, 1 # use with .2s duration + bezier = md1, 0.4, 0, 0.2, 1 # use with .2s duration + bezier = md3_decel, 0.05, 0.7, 0.1, 1 # Animation configs # animation = windows, 1, 3, md3_decel, popin 60% diff --git a/config/hypr/animations/Mahaveer - me-1.lua b/config/hypr/animations/Mahaveer - me-1.lua index 5c9824ff..d916e1ce 100644 --- a/config/hypr/animations/Mahaveer - me-1.lua +++ b/config/hypr/animations/Mahaveer - me-1.lua @@ -6,15 +6,15 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) hl.curve("md3_standard", { type = "bezier", points = { { 0.2, 0 }, { 0, 1 } } }) hl.curve("md3_decel", { type = "bezier", points = { { 0.05, 0.7 }, { 0.1, 1 } } }) hl.curve("md3_accel", { type = "bezier", points = { { 0.3, 0 }, { 0.8, 0.15 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.1 } } }) -hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.5 }, { 0.76, 0.92 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) +hl.curve("crazyshot", { type = "bezier", points = { { 0.1, 1.0 }, { 0.76, 0.92 } } }) hl.curve("hyprnostretch", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) hl.curve("menu_decel", { type = "bezier", points = { { 0.1, 1 }, { 0, 1 } } }) hl.curve("menu_accel", { type = "bezier", points = { { 0.38, 0.04 }, { 1, 0.07 } } }) diff --git a/config/hypr/animations/Mahaveer - me-2.conf b/config/hypr/animations/Mahaveer - me-2.conf index 3d9b35ae..439afafa 100644 --- a/config/hypr/animations/Mahaveer - me-2.conf +++ b/config/hypr/animations/Mahaveer - me-2.conf @@ -7,13 +7,13 @@ animations { enabled = yes - bezier = wind, 0.05, 0.9, 0.1, 1.05 - bezier = winIn, 0.1, 1.1, 0.1, 1.1 - bezier = winOut, 0.3, -0.3, 0, 1 + bezier = wind, 0.05, 0.9, 0.1, 1.00 + bezier = winIn, 0.1, 1.0, 0.1, 1.0 + bezier = winOut, 0.3, 0.0, 0, 1 bezier = liner, 1, 1, 1, 1 - bezier = overshot, 0.05, 0.9, 0.1, 1.05 + bezier = overshot, 0.05, 0.9, 0.1, 1.00 bezier = smoothOut, 0.5, 0, 0.99, 0.99 - bezier = smoothIn, 0.5, -0.5, 0.68, 1.5 + bezier = smoothIn, 0.5, 0.0, 0.68, 1.0 animation = windows, 1, 6, wind, slide animation = windowsIn, 1, 5, winIn, slide @@ -27,4 +27,4 @@ animations { # animations for -git or version >0.42.0 animation = workspacesIn, 1, 5, winIn, slide animation = workspacesOut, 1, 5, winOut, slide -}
\ No newline at end of file +} diff --git a/config/hypr/animations/Mahaveer - me-2.lua b/config/hypr/animations/Mahaveer - me-2.lua index 72feaa00..b3d55a75 100644 --- a/config/hypr/animations/Mahaveer - me-2.lua +++ b/config/hypr/animations/Mahaveer - me-2.lua @@ -6,13 +6,13 @@ hl.config({ }, }) -hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) -hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.1 }, { 0.1, 1.1 } } }) -hl.curve("winOut", { type = "bezier", points = { { 0.3, -0.3 }, { 0, 1 } } }) +hl.curve("wind", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) +hl.curve("winIn", { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1.0 } } }) +hl.curve("winOut", { type = "bezier", points = { { 0.3, 0.0 }, { 0, 1 } } }) hl.curve("liner", { type = "bezier", points = { { 1, 1 }, { 1, 1 } } }) -hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } }) +hl.curve("overshot", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.00 } } }) hl.curve("smoothOut", { type = "bezier", points = { { 0.5, 0 }, { 0.99, 0.99 } } }) -hl.curve("smoothIn", { type = "bezier", points = { { 0.5, -0.5 }, { 0.68, 1.5 } } }) +hl.curve("smoothIn", { type = "bezier", points = { { 0.5, 0.0 }, { 0.68, 1.0 } } }) hl.animation({ leaf = "windows", enabled = true, speed = 6, bezier = "wind", style = "slide" }) hl.animation({ leaf = "windowsIn", enabled = true, speed = 5, bezier = "winIn", style = "slide" }) |
