mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
30 lines
463 B
Text
Executable file
30 lines
463 B
Text
Executable file
# mkfile rules to set fonts
|
|
# if you want to use Times, change these next lines to
|
|
# MAN=mantimes
|
|
# FONTS=''
|
|
MAN=man
|
|
MANFONT=luxi
|
|
switch($MANFONT){
|
|
|
|
case lucida
|
|
FONTS='.fp 1 R LucidaSans
|
|
.fp 2 I LucidaSansI
|
|
.fp 3 B LucidaSansB
|
|
.fp 5 L LucidaCW
|
|
'
|
|
|
|
case luxi
|
|
FONTS='.fp 1 R LuxiSans
|
|
.fp 2 I LuxiSans-Oblique
|
|
.fp 3 B LuxiSans-Bold
|
|
.fp 5 L LuxiMono
|
|
'
|
|
|
|
case dejavu
|
|
FONTS='.fp 1 R DejaVuSans
|
|
.fp 2 I DejaVuSansOblique
|
|
.fp 3 B DejaVuSansBold
|
|
.fp 5 L DejaVuMonoSans
|
|
'
|
|
|
|
}
|