1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ #
# Instpired by amitpadhan525
# https://github.com/amitpadhan525
# name "amitpadhan"
animations {
enabled = yes
# Define your custom Bezier curves
# Syntax: bezier = name, x1, y1, x2, y2
bezier = myBezier, 0.05, 0.9, 0.1, 1.0
# Define your animations
# Syntax: animation = name, enable, speed, curve, [style]
animation = windows, 1, 5, myBezier
animation = windowsIn, 1, 5, myBezier
animation = windowsOut, 1, 5, myBezier
animation = windowsMove, 1, 5, myBezier
animation = layers, 1, 5, myBezier
animation = layersIn, 1, 5, myBezier
animation = layersOut, 1, 5, myBezier
animation = border, 1, 10, default
animation = borderangle, 1, 8, default
animation = fade, 1, 5, default
animation = fadeLayersIn, 1, 5, myBezier
animation = fadeLayersOut, 1, 5, myBezier
animation = workspaces, 1, 5, myBezier, slidefade 20%
animation = workspacesIn, 1, 5, myBezier, slide
animation = workspacesOut, 1, 5, myBezier, slide
animation = specialWorkspace, 1, 5, myBezier, slidevert
}
|