feat(hypr): (almost) complete lua rewrite of configs
This commit is contained in:
@@ -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 }
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user