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
+387 -397
View File
File diff suppressed because it is too large Load Diff
+7 -17
View File
@@ -785,9 +785,7 @@ This file sets up Kitty terminal
let let
username = config.defaultUser or "henrov"; username = config.defaultUser or "henrov";
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf"; extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig = extraConfig =
if builtins.pathExists extraConfigFile if builtins.pathExists extraConfigFile
then builtins.readFile extraConfigFile then builtins.readFile extraConfigFile
@@ -800,16 +798,13 @@ in
environment.systemPackages = [ environment.systemPackages = [
pkgs.kitty pkgs.kitty
]; ];
################################# #################################
# Home Manager # Home Manager
################################# #################################
home-manager.users = { home-manager.users = {
"${username}" = { "${username}" = {
programs.kitty = { programs.kitty = {
enable = true; enable = true;
settings = { settings = {
confirm_os_window_close = lib.mkForce 0; confirm_os_window_close = lib.mkForce 0;
dynamic_background_opacity = lib.mkForce true; dynamic_background_opacity = lib.mkForce true;
@@ -820,10 +815,8 @@ in
background_blur = lib.mkForce 5; background_blur = lib.mkForce 5;
notify_on_command_complete = lib.mkForce "never"; notify_on_command_complete = lib.mkForce "never";
}; };
extraConfig = '' extraConfig = ''
${extraConfig} ${extraConfig}
# Theme # Theme
include themes/Catppuccin-Mocha.conf include themes/Catppuccin-Mocha.conf
''; '';
@@ -4973,7 +4966,7 @@ window#waybar {
#custom-tray-anchor, #custom-tray-anchor,
#custom-system-anchor, #custom-system-anchor,
#custom-connections-anchor { #custom-connections-anchor {
min-width: 60px; min-width: 80px;
padding: 0 5px; padding: 0 5px;
margin: 0 2px; margin: 0 2px;
opacity: 1; opacity: 1;
@@ -4995,14 +4988,14 @@ window#waybar {
#tray:hover, #tray:hover,
#system:hover, #system:hover,
#connections:hover { #connections:hover {
min-width: 60px; min-width: 80px;
} }
/* MODULES */ /* MODULES */
.modules-left > widget, .modules-left > widget,
.modules-center > widget, .modules-center > widget,
.modules-right > widget { .modules-right > widget {
min-width: 60px; min-width: 80px;
color: @text; color: @text;
font-weight: bold; font-weight: bold;
border-radius: 30px; border-radius: 30px;
@@ -5104,7 +5097,7 @@ label#custom-windows:not(.active) {
} }
#pulseaudio-slider trough { #pulseaudio-slider trough {
min-height: 10px; min-height: 10px;
min-width: 60px; min-width: 80px;
border-radius: 30px; border-radius: 30px;
background: transparent; background: transparent;
} }
@@ -5167,7 +5160,7 @@ label#custom-windows:not(.active) {
} }
#custom-notifications { #custom-notifications {
min-width: 60px; min-width: 80px;
} }
/* --------------------------------------------------------- */ /* --------------------------------------------------------- */
@@ -5179,15 +5172,12 @@ label#custom-windows:not(.active) {
#temperature, #temperature,
#network, #network,
#pulseaudio, #pulseaudio,
#clock,
#tray { #tray {
margin: 0 2px; margin: 0 2px;
padding: 0 4px; padding: 0 10px;
} }
#clock{
margin: 0 5px;
padding: 0 4px;
}
#+END_SRC #+END_SRC
** =generated/.config/scripts/bluetooth-status.sh= ** =generated/.config/scripts/bluetooth-status.sh=
@@ -25,7 +25,7 @@ window#waybar {
#custom-tray-anchor, #custom-tray-anchor,
#custom-system-anchor, #custom-system-anchor,
#custom-connections-anchor { #custom-connections-anchor {
min-width: 60px; min-width: 80px;
padding: 0 5px; padding: 0 5px;
margin: 0 2px; margin: 0 2px;
opacity: 1; opacity: 1;
@@ -47,14 +47,14 @@ window#waybar {
#tray:hover, #tray:hover,
#system:hover, #system:hover,
#connections:hover { #connections:hover {
min-width: 60px; min-width: 80px;
} }
/* MODULES */ /* MODULES */
.modules-left > widget, .modules-left > widget,
.modules-center > widget, .modules-center > widget,
.modules-right > widget { .modules-right > widget {
min-width: 60px; min-width: 80px;
color: @text; color: @text;
font-weight: bold; font-weight: bold;
border-radius: 30px; border-radius: 30px;
@@ -156,7 +156,7 @@ label#custom-windows:not(.active) {
} }
#pulseaudio-slider trough { #pulseaudio-slider trough {
min-height: 10px; min-height: 10px;
min-width: 60px; min-width: 80px;
border-radius: 30px; border-radius: 30px;
background: transparent; background: transparent;
} }
@@ -219,7 +219,7 @@ label#custom-windows:not(.active) {
} }
#custom-notifications { #custom-notifications {
min-width: 60px; min-width: 80px;
} }
/* --------------------------------------------------------- */ /* --------------------------------------------------------- */
@@ -231,12 +231,8 @@ label#custom-windows:not(.active) {
#temperature, #temperature,
#network, #network,
#pulseaudio, #pulseaudio,
#clock,
#tray { #tray {
margin: 0 2px; margin: 0 2px;
padding: 0 4px; padding: 0 10px;
}
#clock{
margin: 0 5px;
padding: 0 4px;
} }
@@ -3,9 +3,7 @@
let let
username = config.defaultUser or "henrov"; username = config.defaultUser or "henrov";
extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf"; extraConfigFile = "${flakeRoot}/generated/.config/kitty/extra.conf";
extraConfig = extraConfig =
if builtins.pathExists extraConfigFile if builtins.pathExists extraConfigFile
then builtins.readFile extraConfigFile then builtins.readFile extraConfigFile
@@ -18,16 +16,13 @@ in
environment.systemPackages = [ environment.systemPackages = [
pkgs.kitty pkgs.kitty
]; ];
################################# #################################
# Home Manager # Home Manager
################################# #################################
home-manager.users = { home-manager.users = {
"${username}" = { "${username}" = {
programs.kitty = { programs.kitty = {
enable = true; enable = true;
settings = { settings = {
confirm_os_window_close = lib.mkForce 0; confirm_os_window_close = lib.mkForce 0;
dynamic_background_opacity = lib.mkForce true; dynamic_background_opacity = lib.mkForce true;
@@ -38,10 +33,8 @@ in
background_blur = lib.mkForce 5; background_blur = lib.mkForce 5;
notify_on_command_complete = lib.mkForce "never"; notify_on_command_complete = lib.mkForce "never";
}; };
extraConfig = '' extraConfig = ''
${extraConfig} ${extraConfig}
# Theme # Theme
include themes/Catppuccin-Mocha.conf include themes/Catppuccin-Mocha.conf
''; '';