-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindowrules.lua
More file actions
59 lines (54 loc) · 1.21 KB
/
Copy pathwindowrules.lua
File metadata and controls
59 lines (54 loc) · 1.21 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
-- Window rules for wofi launcher
hl.window_rule({
name = "wofi-rules",
match = { class = "^wofi$" },
float = true,
center = true,
size = "500 400"
})
-- Make GNOME Calculator float instead of tile
hl.window_rule({
name = "gnome-calculator",
match = { class = "^(org\\.gnome\\.Calculator)$" },
float = true,
size = "360 630",
center = true
})
-- Window rules for overskride
hl.window_rule({
name = "overskride",
match = { class = "^io\\.github\\.kaii_lb\\.Overskride$" },
float = true,
center = true,
size = "500 400"
})
-- Window rules for clipboard manager (clipmgr)
hl.window_rule({
name = "clipmgr-float",
match = { class = "^clipmgr$" },
float = true,
center = true,
size = "800 600"
})
-- Layer rules for walker
hl.config({
layerrule = {
"blur, wofi",
"ignorealpha 0.1, wofi"
}
})
-- Window rules for waybar-launched kitty terminals
hl.window_rule({
name = "waybar-kitty",
match = { class = "^waybar-kitty$" },
float = true,
center = true,
size = "800 600"
})
hl.window_rule({
name = "waybar-sigye",
match = { class = "^waybar-sigye$" },
float = true,
center = true,
size = "600 300"
})