change(hyprland): active border uses base 6

This commit is contained in:
2026-01-10 23:21:57 +01:00
parent 353f449f80
commit 9151cb04eb
2 changed files with 15 additions and 3 deletions

View File

@@ -42,12 +42,15 @@ in
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
}; };
programs = { programs = {
hyprlock = {
enable = true;
};
wlogout = { wlogout = {
enable = true; enable = true;
layout = [ layout = [
{ {
"label" = "lock"; "label" = "lock";
"action" = "loginctl lock-session"; "action" = "hyprlock";
"text" = "Lock"; "text" = "Lock";
"keybind" = "l"; "keybind" = "l";
} }

View File

@@ -1,4 +1,12 @@
{ inputs, pkgs, ... }: {
inputs,
pkgs,
config,
...
}:
let
base16 = config.modules.base16;
in
{ {
home.packages = [ home.packages = [
pkgs.hyprcursor pkgs.hyprcursor
@@ -23,7 +31,8 @@
gaps_in = 1; gaps_in = 1;
gaps_out = 1; gaps_out = 1;
border_size = 1; border_size = 1;
# col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg "col.active_border" =
"rgb(${toString base16.rgb."06".r},${toString base16.rgb."06".g},${toString base16.rgb."06".b})";
# col.inactive_border = rgba(595959aa) # col.inactive_border = rgba(595959aa)
resize_on_border = false; resize_on_border = false;
allow_tearing = true; allow_tearing = true;