1
0
Fork 0
anymenu/fonts/fonts_linux.go

16 lines
400 B
Go

// +build linux
package fonts
func fontDirs() []string {
return []string{
".", // Current directory
"~/.fonts", // User
"~/.fonts/truetype", // User
"~/.local/share/fonts", // User
"~/.local/share/fonts/truetype", // User
"/usr/share/fonts", // System
"/usr/share/fonts/truetype", // System
}
}