friendship over with jb mono, now monaspace xenon is my best friend

This commit is contained in:
krizej 2024-11-02 18:44:05 +01:00
parent b57d0a617a
commit 868afcad08
4 changed files with 14 additions and 8 deletions

View file

@ -9,7 +9,7 @@ button {
background: #333; background: #333;
color: #fff; color: #fff;
font: 14px "JetBrains Mono NL"; font: 14px "monospace";
} }
button:hover { button:hover {

View file

@ -25,7 +25,7 @@ in {
frame_width = 1; frame_width = 1;
background = "#333333"; background = "#333333";
foreground = "#feeeee"; foreground = "#feeeee";
font = "JetBrains Mono NL 10"; font = "monospace 10";
frame_color = "#4c7899"; frame_color = "#4c7899";
}; };
}; };

View file

@ -138,7 +138,7 @@ in {
}; };
fonts = { fonts = {
names = [ "JetBrains Mono NL" ]; names = [ "monospace" ];
size = 10.0; size = 10.0;
}; };
@ -256,6 +256,9 @@ in {
inherit fonts; inherit fonts;
trayOutput = "primary"; trayOutput = "primary";
statusCommand = "${lib.getExe hmCfg.programs.i3status.package}"; statusCommand = "${lib.getExe hmCfg.programs.i3status.package}";
extraConfig = ''
height 24
'';
}]; }];
}; };
}; };

View file

@ -12,11 +12,14 @@ in {
enableDefaultPackages = true; enableDefaultPackages = true;
packages = with pkgs; [ packages = with pkgs; [
jetbrains-mono jetbrains-mono
monaspace
]; ];
fontconfig.defaultFonts = { fontconfig.defaultFonts = let
serif = [ "JetBrains Mono NL" ]; font = "Monaspace Xenon";
sansSerif = [ "JetBrains Mono NL" ]; in {
monospace = [ "JetBrains Mono NL" ]; serif = [ font ];
sansSerif = [ font ];
monospace = [ font ];
}; };
}; };
@ -57,4 +60,4 @@ in {
}; };
}; };
}; };
} }