diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-12-09 21:20:34 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-12-09 21:20:34 +0100 |
commit | 7f76e8dbf74fa71936dff2a60f029909944e3209 (patch) | |
tree | 9f5da1bffe53e595104e91bf12f7de929a4d44cd | |
parent | ddfe55ee2fab41e2bfaa0c1800bba832999e1b0d (diff) | |
download | plan9front-7f76e8dbf74fa71936dff2a60f029909944e3209.tar.xz |
faces: use dejavusans instead of pelm
-rw-r--r-- | sys/src/cmd/faces/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/src/cmd/faces/main.c b/sys/src/cmd/faces/main.c index 451e84b94..e5eee9e42 100644 --- a/sys/src/cmd/faces/main.c +++ b/sys/src/cmd/faces/main.c @@ -113,9 +113,9 @@ init(void) tinyfont = openfont(display, "/lib/font/bit/misc/ascii.5x7.font"); if(tinyfont == nil) tinyfont = font; - mediumfont = openfont(display, "/lib/font/bit/pelm/latin1.8.font"); - if(mediumfont == nil) - mediumfont = font; + mediumfont = openfont(display, "/lib/font/bit/dejavusans/dejavusans.12.font"); + if(mediumfont == nil) + mediumfont = font; datefont = font; facep.y += datefont->height; |