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
76
77
78
79
80
81
82
83
84
85
86
87
88
|
-- ==================================================
-- KoolDots (2026)
-- Project URL: https://github.com/LinuxBeginnings
-- License: GNU GPLv3
-- SPDX-License-Identifier: GPL-3.0-or-later
-- ==================================================
-- Auto-generated from config/hypr/configs/LayerRules.conf for Lua testing.
-- Edit the source LayerRules.conf and regenerate this file when vendor rules change.
local function apply_layer_rule(rule)
if hl.layer_rule then
hl.layer_rule(rule)
end
end
apply_layer_rule({
name = "layerrule-001",
match = {
namespace = "rofi",
},
blur = true,
ignore_alpha = 0,
animation = "slide",
})
apply_layer_rule({
name = "layerrule-002",
match = {
namespace = "notifications",
},
blur = true,
ignore_alpha = 0,
animation = "slide",
})
apply_layer_rule({
name = "layerrule-003",
match = {
namespace = "quickshell:overview",
},
blur = true,
ignore_alpha = 0.5,
})
apply_layer_rule({
name = "layerrule-004",
match = {
namespace = "wallpaper",
},
blur = true,
ignore_alpha = 0,
})
apply_layer_rule({
name = "layerrule-005",
match = {
namespace = "swaync-control-center",
},
blur = true,
ignore_alpha = 0,
})
apply_layer_rule({
name = "layerrule-006",
match = {
namespace = "swaync-notification-window",
},
blur = true,
ignore_alpha = 0,
})
apply_layer_rule({
name = "layerrule-007",
match = {
namespace = "com.aurora.keybinds_help",
},
blur = true,
ignore_alpha = 0,
})
apply_layer_rule({
name = "layerrule-008",
match = {
namespace = "logout_dialog",
},
blur = true,
ignore_alpha = 0,
})
|