diff options
Diffstat (limited to 'hypr/configs/animations.lua')
| -rw-r--r-- | hypr/configs/animations.lua | 14 |
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" }) |