diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-08-20 13:22:42 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:34 -0700 |
| commit | 9570ea2460cb44d16aca98eb3dc823adf77105ad (patch) | |
| tree | 302ace65e5fd5a0d4bf00e5c211531dc509056e9 /config/hypr/lua/decorations.lua | |
| parent | d638689871215af0a73d0df637abd4d7df9dbd84 (diff) | |
Reset border,gaps defaults
Signed-off-by: Don Williams <don.e.williams@gmail.com>
Diffstat (limited to 'config/hypr/lua/decorations.lua')
| -rw-r--r-- | config/hypr/lua/decorations.lua | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/config/hypr/lua/decorations.lua b/config/hypr/lua/decorations.lua index 1fe25fd7..d7132887 100644 --- a/config/hypr/lua/decorations.lua +++ b/config/hypr/lua/decorations.lua @@ -10,55 +10,55 @@ -- Lua parity for importing that file is still evolving; using static color fallbacks here. hl.config({ - general = { - border_size = 2, - gaps_in = 2, - gaps_out = 4, - col = { - active_border = "rgba(8db4ffff)", - inactive_border = "rgba(5f6578ff)", - }, + general = { + border_size = 1, + gaps_in = 4, + gaps_out = 6, + col = { + active_border = "rgba(8db4ffff)", + inactive_border = "rgba(5f6578ff)", }, + }, }) hl.config({ - decoration = { - rounding = 10, - active_opacity = 1.0, - inactive_opacity = 0.9, - fullscreen_opacity = 1.0, - dim_inactive = true, - dim_strength = 0.1, - dim_special = 0.8, - shadow = { - enabled = true, - range = 3, - render_power = 1, - color = "rgba(8db4ffff)", - color_inactive = "rgba(5f6578ff)", - }, - blur = { - enabled = true, - size = 6, - passes = 3, - new_optimizations = true, - xray = true, - ignore_opacity = true, - special = true, - popups = true, - }, + decoration = { + rounding = 10, + active_opacity = 1.0, + inactive_opacity = 0.9, + fullscreen_opacity = 1.0, + dim_inactive = true, + dim_strength = 0.1, + dim_special = 0.8, + shadow = { + enabled = true, + range = 3, + render_power = 1, + color = "rgba(8db4ffff)", + color_inactive = "rgba(5f6578ff)", }, + blur = { + enabled = true, + size = 6, + passes = 3, + new_optimizations = true, + xray = true, + ignore_opacity = true, + special = true, + popups = true, + }, + }, }) hl.config({ - group = { - col = { - border_active = "rgba(ffffffff)", - }, - groupbar = { - col = { - active = "rgba(0f111aff)", - }, - }, + group = { + col = { + border_active = "rgba(ffffffff)", + }, + groupbar = { + col = { + active = "rgba(0f111aff)", + }, }, + }, }) |
