feat(hypr): (almost) complete lua rewrite of configs

This commit is contained in:
2026-06-14 07:25:42 +02:00
parent 6e35326906
commit 37cf063eb1
11 changed files with 229 additions and 30 deletions
+53 -1
View File
@@ -1 +1,53 @@
-- Floating windows & their positioning
-- Floating windows
-- Float
hl.window_rule({
match = {
tag = "dialog",
},
float = true,
center = true,
})
-- No float
hl.window_rule({
match = {
title = "launchers",
},
float = false,
})
-- fullscreen
hl.window_rule({
match = {
tag = "game",
},
fullscreen = true,
})
hl.window_rule({
match = {
class = "wlogout",
},
fullscreen = true,
})
-- Termfilechooser
hl.window_rule({
match = {
title = "termfilechooser",
},
float = true,
center = true,
dim_around = true,
size = { 1400, 800 },
})
-- hidden terminator
hl.window_rule({
match = {
title = "^hidden-terminator$",
},
float = true,
center = true,
size = { 0, 0 },
move = { 0, 0 }
})