From 09f47360d1d520ea7746d3a9f0045ffcf2af7d72 Mon Sep 17 00:00:00 2001 From: Donald Williams <129223418+dwilliam62@users.noreply.github.com> Date: Fri, 3 Jul 2026 08:43:30 -0400 Subject: Development to main - fix changelog and animation files (#86) * Created v2.3.26 development branch Signed-off-by: Don Williams 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 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 * 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 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 * docs: Updated change log, fixed fullscreen keybind (#85) Co-authored-by: sharof --------- Signed-off-by: Don Williams Co-authored-by: sharofiddin Co-authored-by: sharof --- config/hypr/animations/amitpadhan.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config/hypr/animations/amitpadhan.lua (limited to 'config/hypr/animations/amitpadhan.lua') 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" }) -- cgit v1.2.3