shithub: xui

ref: 0c44bd66e976d09c7aad8c6081d8b590832cea46
dir: /font/font_unix.go/

View raw version
//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"
}