-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths_darwin.go
25 lines (21 loc) · 975 Bytes
/
paths_darwin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// +build darwin
package xdg
var (
defaultDataHome = ParsePath("~/Library/Application Support")
defaultDataDirs = ParseDirs("/Library/Application Support")
defaultConfigHome = ParsePath("~/Library/Preferences")
defaultConfigDirs = ParseDirs("/Library/Preferences")
defaultCacheHome = ParsePath("~/Library/Caches")
defaultStateHome = ParsePath("~/Library/Caches")
defaultRuntime = ParsePath("~/Library/Application Support")
defaultDesktop = ParsePath("~/Desktop")
defaultDownload = ParsePath("~/Downloads")
defaultDocuments = ParsePath("~/Documents")
defaultMusic = ParsePath("~/Music")
defaultPictures = ParsePath("~/Pictures")
defaultVideos = ParsePath("~/Videos")
defaultTemplates = ParsePath("~/Templates")
defaultPublic = ParsePath("~/Public")
defaultApplicationDirs = ParseDirs("~/Applications:/Applications")
defaultFontDirs = ParseDirs("~/Library/Fonts:/Library/Fonts:/System/Library/Fonts:/Network/Library/Fonts")
)