Regenerated

This commit is contained in:
2026-04-23 20:08:57 +02:00
parent 1dbf772873
commit 0da45a5b0d
4 changed files with 401 additions and 432 deletions
@@ -25,7 +25,7 @@ window#waybar {
#custom-tray-anchor,
#custom-system-anchor,
#custom-connections-anchor {
min-width: 60px;
min-width: 80px;
padding: 0 5px;
margin: 0 2px;
opacity: 1;
@@ -47,14 +47,14 @@ window#waybar {
#tray:hover,
#system:hover,
#connections:hover {
min-width: 60px;
min-width: 80px;
}
/* MODULES */
.modules-left > widget,
.modules-center > widget,
.modules-right > widget {
min-width: 60px;
min-width: 80px;
color: @text;
font-weight: bold;
border-radius: 30px;
@@ -156,7 +156,7 @@ label#custom-windows:not(.active) {
}
#pulseaudio-slider trough {
min-height: 10px;
min-width: 60px;
min-width: 80px;
border-radius: 30px;
background: transparent;
}
@@ -219,7 +219,7 @@ label#custom-windows:not(.active) {
}
#custom-notifications {
min-width: 60px;
min-width: 80px;
}
/* --------------------------------------------------------- */
@@ -231,12 +231,8 @@ label#custom-windows:not(.active) {
#temperature,
#network,
#pulseaudio,
#clock,
#tray {
margin: 0 2px;
padding: 0 4px;
}
#clock{
margin: 0 5px;
padding: 0 4px;
padding: 0 10px;
}
@@ -3,9 +3,7 @@
let
username = config.defaultUser or "henrov";
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig =
if builtins.pathExists extraConfigFile
then builtins.readFile extraConfigFile
@@ -18,16 +16,13 @@ in
environment.systemPackages = [
pkgs.kitty
];
#################################
# Home Manager
#################################
home-manager.users = {
"${username}" = {
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = lib.mkForce 0;
dynamic_background_opacity = lib.mkForce true;
@@ -38,10 +33,8 @@ in
background_blur = lib.mkForce 5;
notify_on_command_complete = lib.mkForce "never";
};
extraConfig = ''
${extraConfig}
# Theme
include themes/Catppuccin-Mocha.conf
'';