2023-07-12 12:43:25 -06:00
|
|
|
//go:build darwin
|
|
|
|
// +build darwin
|
2023-09-15 13:24:51 -06:00
|
|
|
// SPDX-FileCopyrightText: 2023 Jon Lundy <jon@xuu.cc>
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2023-07-12 12:43:25 -06:00
|
|
|
|
|
|
|
package xdg
|
|
|
|
|
|
|
|
func literal(name string) string {
|
|
|
|
return "$" + name
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultDataHome = "~/Library/Application Support"
|
|
|
|
defaultDataDirs = "/Library/Application Support"
|
|
|
|
defaultConfigHome = "~/Library/Preferences"
|
|
|
|
defaultConfigDirs = "/Library/Preferences"
|
|
|
|
defaultCacheHome = "~/Library/Caches"
|
|
|
|
defaultStateHome = "~/Library/Caches"
|
|
|
|
defaultRuntime = "~/Library/Application Support"
|
|
|
|
|
|
|
|
defaultDesktop = "~/Desktop"
|
|
|
|
defaultDownload = "~/Downloads"
|
|
|
|
defaultDocuments = "~/Documents"
|
|
|
|
defaultMusic = "~/Music"
|
|
|
|
defaultPictures = "~/Pictures"
|
|
|
|
defaultVideos = "~/Videos"
|
|
|
|
defaultTemplates = "~/Templates"
|
|
|
|
defaultPublic = "~/Public"
|
|
|
|
|
|
|
|
defaultApplicationDirs = "~/Applications:/Applications"
|
|
|
|
defaultFontDirs = "~/Library/Fonts:/Library/Fonts:/System/Library/Fonts:/Network/Library/Fonts"
|
|
|
|
)
|