30 lines
463 B
Lua
30 lines
463 B
Lua
-- modules/layouts.lua
|
|
-- See https://wiki.hypr.land/Configuring/Layouts/
|
|
|
|
hl.config({
|
|
general = {
|
|
layout = "dwindle",
|
|
},
|
|
dwindle = {
|
|
preserve_split = true,
|
|
},
|
|
})
|
|
|
|
hl.config({
|
|
master = {
|
|
new_status = "master",
|
|
},
|
|
})
|
|
|
|
hl.config({
|
|
scrolling = {
|
|
fullscreen_on_one_column = true,
|
|
},
|
|
})
|
|
|
|
hl.config({
|
|
misc = {
|
|
force_default_wallpaper = -1,
|
|
disable_hyprland_logo = false,
|
|
},
|
|
})
|