1
0
Fork 0
anymenu/fonts/fonts_linux.go

16 lines
400 B
Go
Raw Permalink Normal View History

2019-06-15 13:47:49 +00:00
// +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
}
}