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;
color: #fff;
font: 14px "JetBrains Mono NL";
font: 14px "monospace";
}
button:hover {

View file

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

View file

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

View file

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