initial setup for hyprlang -> lua

This commit is contained in:
2026-05-04 19:53:56 +02:00
parent 845d28c6a1
commit 5506a79667
10 changed files with 321 additions and 1 deletions
+34
View File
@@ -0,0 +1,34 @@
hl.windowrule({
name = "xwayland",
opacity = "0.0 override",
no_anim = true,
no_initial_focus = true,
max_size = { 1, 1 },
no_blur = true,
no_focus = true,
match = { class = "^(xwaylandvideobridge)$" },
})
hl.windowrule({
name = "fullscreen_idling",
idle_inhibit = "fullscreen",
match = { class = ".*" },
})
hl.windowrule({
name = "video_idling",
idle_inhibit = "always",
match = { content = "video" },
})
hl.windowrule({
name = "game_idling",
idle_inhibit = "always",
match = { content = "game" },
})
hl.windowrule({
name = "match_fullscreen",
idle_inhibit = "always",
match = { fullscreen_state_internal = 2, fullscreen_state_client = 2 },
})