ref: e1fab0877ca6cb0632e5203d99591579d3b749ce
dir: /internal/font/font_unix.go/
//go:build !plan9
package font
import (
"os"
"path"
)
func FontDir() string {
return path.Join(os.Getenv("PLAN9"), "/font/luc")
}
func FontFile() string {
return "unicode.18.font"
}