63 lines
1.2 KiB
Lua
63 lines
1.2 KiB
Lua
local C = require("color")
|
|
|
|
hl.config({
|
|
general = {
|
|
gaps_in = 3,
|
|
gaps_out = 6,
|
|
|
|
border_size = 2,
|
|
|
|
col = {
|
|
active_border = { colors = { C.colors.vivian1, C.colors.ado }, angle = 90 },
|
|
inactive_border = { colors = { C.colors.pink, C.colors.vivian2 }, angle = 60 },
|
|
},
|
|
|
|
-- Set to true to enable resizing windows by clicking and dragging on borders and gaps
|
|
resize_on_border = true,
|
|
|
|
-- Please see https://wiki.hypr.land/Configuring/Advanced-and-Cool/Tearing/ before you turn this on
|
|
allow_tearing = false,
|
|
|
|
layout = "dwindle",
|
|
},
|
|
|
|
decoration = {
|
|
rounding = 10,
|
|
rounding_power = 2,
|
|
|
|
-- Change transparency of focused and unfocused windows
|
|
active_opacity = 1.0,
|
|
inactive_opacity = 1.0,
|
|
|
|
shadow = {
|
|
enabled = true,
|
|
range = 100,
|
|
render_power = 4,
|
|
color = 0x66000000,
|
|
color_inactive = 0x33000000,
|
|
offset = "0, 10",
|
|
scale = 1,
|
|
},
|
|
|
|
blur = {
|
|
enabled = true,
|
|
size = 2,
|
|
passes = 3,
|
|
new_optimizations = true,
|
|
ignore_opacity = true,
|
|
contrast = 1.0,
|
|
brightness = 1.0,
|
|
vibrancy = 0.0,
|
|
vibrancy_darkness = 0.0,
|
|
xray = false,
|
|
noise = 0,
|
|
popups = true,
|
|
input_methods = true,
|
|
},
|
|
},
|
|
|
|
animations = {
|
|
enabled = true,
|
|
},
|
|
})
|