-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhyprland.lua
More file actions
75 lines (70 loc) · 1.4 KB
/
Copy pathhyprland.lua
File metadata and controls
75 lines (70 loc) · 1.4 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
-- Generated by scripts/hypr2lua.
-- Source: omarchy-monolith-theme/hyprland.conf
local activeBorderColor = {
colors = { "rgba(c4a7e7ff)", "rgba(3e8fb0ff)" },
angle = 45,
}
local inactiveBorderColor = "rgba(6e6a86ff)"
hl.config({
general = {
col = {
active_border = activeBorderColor,
inactive_border = inactiveBorderColor,
},
gaps_in = 0,
gaps_out = 0,
border_size = 3,
},
group = {
col = {
border_active = activeBorderColor,
},
},
decoration = {
rounding = 0,
rounding_power = 0,
blur = {
enabled = true,
size = 8,
passes = 3,
noise = 0.035,
contrast = 1.05,
brightness = 0.75,
vibrancy = 0.1,
vibrancy_darkness = 0.2,
ignore_opacity = true,
new_optimizations = true,
},
shadow = {
enabled = false,
},
},
})
hl.curve("bezier01", { type = "bezier", points = { { 0.65, 0 }, { 0.35, 1 } } })
hl.animation({
leaf = "windows",
enabled = true,
speed = 7,
bezier = "bezier01",
})
hl.animation({
leaf = "windowsIn",
enabled = true,
speed = 7,
bezier = "bezier01",
style = "slide",
})
hl.window_rule({
name = "windowrule-1",
opacity = "1.0 override",
match = {
class = "^(brave-youtube\\\\.com__-Default)$",
},
})
hl.window_rule({
name = "windowrule-2",
opacity = "1.0 override",
match = {
class = "^(chrome-youtube\\\\.com__-Default)$",
},
})