shithub: xui

ref: 00d144fb31327e3e7181f669c58d6fdbe0c9485e
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"
}