aboutsummaryrefslogtreecommitdiff
path: root/hypr/configs/animations.lua
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2026-05-15 23:28:20 +0530
committerBlaster4385 <[email protected]>2026-05-18 16:52:47 +0530
commitf826256c010c0e5c8c2bd64adb1fae1c3f399717 (patch)
tree194e7c15f0903b073d2db3dcae6aa09651341a85 /hypr/configs/animations.lua
parent8b254a730b26a40ef2d2ccf0881075a6719b6712 (diff)
feat: migrate hyprland config to luaHEADmain
Diffstat (limited to 'hypr/configs/animations.lua')
-rw-r--r--hypr/configs/animations.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/hypr/configs/animations.lua b/hypr/configs/animations.lua
new file mode 100644
index 0000000..c55489d
--- /dev/null
+++ b/hypr/configs/animations.lua
@@ -0,0 +1,14 @@
+hl.config({
+ animations = {
+ enabled = true
+ }
+})
+
+hl.curve("myBezier", { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1.05 } } })
+
+hl.animation({ leaf = "windows", enabled = true, speed = 7, bezier = "myBezier" })
+hl.animation({ leaf = "windowsOut", enabled = true, speed = 7, bezier = "default", style = "popin 80%" })
+hl.animation({ leaf = "border", enabled = false, speed = 0, bezier = "default" })
+hl.animation({ leaf = "borderangle", enabled = false, speed = 0, bezier = "default" })
+hl.animation({ leaf = "fade", enabled = false, speed = 4, bezier = "default" })
+hl.animation({ leaf = "workspaces", enabled = true, speed = 6, bezier = "default" })