add hyprland lua conf for laptops
nixos config pipeline / show-flake (push) Successful in 22s
nixos config pipeline / deploy (push) Successful in 56s

This commit is contained in:
smayzy
2026-08-26 23:40:14 +02:00
parent 5210fb36a0
commit 01e8bed0fc
8 changed files with 242 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
--Set look and feel here
hl.config({
general = {
layout = "dwindle",
gaps_in = 3,
gaps_out = 5,
border_size = 1,
col = {
active_border = { colors = {"rgba(33ccffee)", "rgba(00ff99ee)"}, angle = 45 },
inactive_border = "rgba(595959aa)",
},
},
decoration = {
rounding = 6,
rounding_power = 2,
active_opacity = 1.0,
inactive_opacity = 1.0,
shadow = {
enabled = false
},
blur = {
enabled = false,
},
},
animations = {
enabled = true,
},
dwindle = {
preserve_split = true,
},
master = {
new_status = "master",
},
misc = {
force_default_wallpaper = 0,
disable_hyprland_logo = true,
},
ecosystem = {
no_update_news = true,
no_donation_nag = true,
}
})
hl.curve( "mybezier", { type = "bezier", points = { {0.05, 0.9}, {0.1, 1.05} } })
hl.animation({ leaf = "windows", enabled = true, speed = 7, bezier = "mybezier" })
hl.animation({ leaf = "windowsOut", enabled = true, speed = 7, bezier = "mybezier" })
hl.animation({ leaf = "border", enabled = true, speed = 7, bezier = "mybezier" })
hl.animation({ leaf = "borderangle", enabled = true, speed = 7, bezier = "mybezier" })
hl.animation({ leaf = "fade", enabled = true, speed = 7, bezier = "mybezier" })
hl.animation({ leaf = "workspaces", enabled = true, speed = 7, bezier = "mybezier" })