diff options
| author | Donald Williams <129223418+dwilliam62@users.noreply.github.com> | 2026-07-03 08:43:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-03 08:43:30 -0400 |
| commit | 09f47360d1d520ea7746d3a9f0045ffcf2af7d72 (patch) | |
| tree | 8fef34dc169a6287ddd4e4260e660382819857ce /config/hypr/animations/amitpadhan.lua | |
| parent | 4166fc30fb567f95c3513ede44f0e117448c0e5f (diff) | |
Development to main - fix changelog and animation files (#86)
* Created v2.3.26 development branch
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Changes to be committed:
modified: CHANGELOG.md
modified: config/hypr/configs/ENVariables.conf
modified: config/hypr/lua/env.lua
renamed: config/hypr/v2.3.25 -> config/hypr/v2.3.26
* Fixed bezier control point values out-of-range
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
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
* Fixed bad SED substitution
Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Added new animation inspired by amitpadhan525
https://github.com/amitpadhan525
Added animations for other features like windowsIn/Out/Move, etc
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
new file: config/hypr/animations/amitpadhan.conf
new file: config/hypr/animations/amitpadhan.lua
* Added acrediation in file for amitpadhan525
Signed-off-by: Don Williams <don.e.williams@gmail.com>
* docs: Updated change log, fixed fullscreen keybind (#85)
Co-authored-by: sharof <pardaev.sharofiddin@technobiz.sg>
---------
Signed-off-by: Don Williams <don.e.williams@gmail.com>
Co-authored-by: sharofiddin <pardayev.sharofiddin@gmail.com>
Co-authored-by: sharof <pardaev.sharofiddin@technobiz.sg>
Diffstat (limited to 'config/hypr/animations/amitpadhan.lua')
| -rw-r--r-- | config/hypr/animations/amitpadhan.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/config/hypr/animations/amitpadhan.lua b/config/hypr/animations/amitpadhan.lua new file mode 100644 index 00000000..3434e5ea --- /dev/null +++ b/config/hypr/animations/amitpadhan.lua @@ -0,0 +1,28 @@ +-- 💫 https://github.com/LinuxBeginnings 💫 +-- Inspired by amitpadhan525 +-- https://github.com/amitpadhan525 + +hl.config({ + animations = { + enabled = true, + }, +}) + +hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.0 } } }) + +hl.animation({ leaf = "windows", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "windowsIn", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "windowsOut", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "windowsMove", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "layers", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "layersIn", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "layersOut", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "border", enabled = true, speed = 10, bezier = "default" }) +hl.animation({ leaf = "borderangle", enabled = true, speed = 8, bezier = "default" }) +hl.animation({ leaf = "fade", enabled = true, speed = 5, bezier = "default" }) +hl.animation({ leaf = "fadeLayersIn", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "fadeLayersOut", enabled = true, speed = 5, bezier = "myBezier" }) +hl.animation({ leaf = "workspaces", enabled = true, speed = 5, bezier = "myBezier", style = "slidefade 20%" }) +hl.animation({ leaf = "workspacesIn", enabled = true, speed = 5, bezier = "myBezier", style = "slide" }) +hl.animation({ leaf = "workspacesOut", enabled = true, speed = 5, bezier = "myBezier", style = "slide" }) +hl.animation({ leaf = "specialWorkspace", enabled = true, speed = 5, bezier = "myBezier", style = "slidevert" }) |
