Files
home/.config/hypr/config/decorations.lua
T
valknar 33d3bf60a0 feat(hypr): track Hyprland config
monitors.lua stays untracked since it's machine-specific
(monitor names/resolutions won't transfer to another host).
2026-08-03 19:42:52 +02:00

47 lines
1.1 KiB
Lua

-- Look and feel configuration
hl.config({
general = {
gaps_in = 3,
gaps_out = 8,
border_size = 2,
extend_border_grab_area = 10,
resize_on_border = true,
col = {
active_border = {
colors = { CACHYLGREEN, CACHYDGREEN },
angle = 45,
},
inactive_border = CACHYGRAY,
},
},
group = {
col = {
border_active = CACHYLBLUE,
border_inactive = CACHYGRAY,
border_locked_active = CACHYDBLUE,
border_locked_inactive = CACHYGRAY,
},
groupbar = {
col = {
active = CACHYLGREEN,
inactive = CACHYGRAY,
locked_active = CACHYDBLUE,
locked_inactive = CACHYGRAY,
},
},
},
decoration = {
dim_special = 0.3,
rounding = 10,
active_opacity = 0.95,
inactive_opacity = 0.85,
fullscreen_opacity = 1,
blur = {
size = 5,
passes = 4,
special = true,
},
},
})