Cleaned up config some and added window rule for fullscreen gaps

This commit is contained in:
venus
2026-06-01 13:57:46 -05:00
parent 2250446148
commit f5781cb444
6 changed files with 81 additions and 100 deletions

View File

@@ -11,7 +11,7 @@ local colors = dofile(os.getenv("HOME") .. "/.config/hypr/noctalia/noctalia-colo
hl.config ({
general = {
gaps_in = 5,
gaps_out = 10,
gaps_out = 4,
border_size = 1,
-- https://wiki.hypr.land/Configuring/Variables/--variable-types for info about colors,
col = {
@@ -81,58 +81,3 @@ hl.animation({ leaf = "workspaces", enabled = true, speed = 1.94, bezier = "
hl.animation({ leaf = "workspacesIn", enabled = true, speed = 1.21, bezier = "almostLinear", style = "fade" })
hl.animation({ leaf = "workspacesOut", enabled = true, speed = 1.94, bezier = "almostLinear", style = "fade" })
hl.animation({ leaf = "zoomFactor", enabled = true, speed = 7, bezier = "quick" })
-- Ref https://wiki.hypr.land/Configuring/Workspace-Rules/
-- "Smart gaps" / "No gaps when only"
-- uncomment all if you wish to use that.
-- workspace = w[tv1], gapsout:0, gapsin:0
-- workspace = f[1], gapsout:0, gapsin:0
-- windowrule {
-- name = no-gaps-wtv1
-- match:float = false
-- match:workspace = w[tv1]
--
-- border_size = 0
-- rounding = 0
-- }
--
-- windowrule {
-- name = no-gaps-f1
-- match:float = false
-- match:workspace = f[1]
--
-- border_size = 0
-- rounding = 0
-- }
-- See https://wiki.hypr.land/Configuring/Dwindle-Layout/ for more
hl.config ({
dwindle = {
preserve_split = true,
},
})
-- See https://wiki.hypr.land/Configuring/Master-Layout/ for more
hl.config ({
master = {
new_status = "master",
},
})
-- See https://wiki.hypr.land/Configuring/Layouts/Scrolling-Layout/ for more
hl.config({
scrolling = {
fullscreen_on_one_column = true,
},
})
-- https://wiki.hypr.land/Configuring/Variables/--misc
--
hl.config ({ misc = {
force_default_wallpaper = 0, -- Set to 0 or 1 to disable the anime mascot wallpapers
disable_hyprland_logo = false, -- If true disables the random hyprland logo / anime girl background. :(
},
})