diff options
author | Luke Smith <luke@lukesmith.xyz> | 2022-06-28 13:54:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 13:54:01 +0000 |
commit | 1455fedf563eac284eab2adabdc369b9a72774e4 (patch) | |
tree | f29834c339632aba86588e93377cf8ee844d8f3d /config.h | |
parent | 713545c1fc38dda390d0ecb98dadcb8deca5e716 (diff) | |
parent | 9371089cb63a1705402a89133e783c793e2987cb (diff) |
Merge pull request #334 from kronikpillow/default-font
change default font to a installed one
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,7 @@ * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ static char *font = "mono:pixelsize=12:antialias=true:autohint=true"; -static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" }; +static char *font2[] = { "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" }; static int borderpx = 2; /* @@ -555,3 +555,4 @@ static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "`abcdefghijklmnopqrstuvwxyz{|}~"; + |