friendship over with jb mono, now monaspace xenon is my best friend
This commit is contained in:
parent
b57d0a617a
commit
868afcad08
4 changed files with 14 additions and 8 deletions
|
@ -9,7 +9,7 @@ button {
|
|||
background: #333;
|
||||
|
||||
color: #fff;
|
||||
font: 14px "JetBrains Mono NL";
|
||||
font: 14px "monospace";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
|
|
@ -25,7 +25,7 @@ in {
|
|||
frame_width = 1;
|
||||
background = "#333333";
|
||||
foreground = "#feeeee";
|
||||
font = "JetBrains Mono NL 10";
|
||||
font = "monospace 10";
|
||||
frame_color = "#4c7899";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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
|
||||
'';
|
||||
}];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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 {
|
|||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue