switch to terminus font

This commit is contained in:
Maddie H 2022-07-09 13:46:34 +01:00
parent f5750848b3
commit aeead449a1
No known key found for this signature in database
GPG Key ID: 63900F0992F8C7B3
2 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Terminus Nerd Font:pixelsize=16:antialias=true:autohint=true";
static char *font = "Terminus (TTF):pixelsize=19:antialias=true:autohint=true";
static char *font2[] = {
"JoyPixels:pixelsize=16:antialias=true:autohint=true",
"Font Awesome 6 Free Solid:pixelsize=16:antialias=true:autohint=true",

4
shell.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.gnumake pkgs.pkg-config pkgs.xorg.libX11 pkgs.xorg.libXft pkgs.harfbuzz ];
}