56 lines
2.0 KiB
Go
56 lines
2.0 KiB
Go
// +build aix dragonfly freebsd js,wasm nacl linux netbsd openbsd solaris
|
|
|
|
package xdg
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
)
|
|
|
|
func initBaseDirs(home string) {
|
|
// Initialize base directories.
|
|
baseDirs.dataHome = xdgPath(envDataHome, filepath.Join(home, ".local", "share"))
|
|
baseDirs.data = xdgPaths(envDataDirs, "/usr/local/share", "/usr/share")
|
|
baseDirs.configHome = xdgPath(envConfigHome, filepath.Join(home, ".config"))
|
|
baseDirs.config = xdgPaths(envConfigDirs, "/etc/xdg")
|
|
baseDirs.cacheHome = xdgPath(envCacheHome, filepath.Join(home, ".cache"))
|
|
baseDirs.runtime = xdgPath(envRuntimeDir, filepath.Join("/run/user", strconv.Itoa(os.Getuid())))
|
|
|
|
// Initialize non-standard directories.
|
|
baseDirs.stateHome = xdgPath(envStateHome, filepath.Join(home, ".local", "state"))
|
|
appDirs := []string{
|
|
filepath.Join(baseDirs.dataHome, "applications"),
|
|
filepath.Join(home, ".local/share/applications"),
|
|
"/usr/local/share/applications",
|
|
"/usr/share/applications",
|
|
}
|
|
|
|
fontDirs := []string{
|
|
filepath.Join(baseDirs.dataHome, "fonts"),
|
|
filepath.Join(home, ".fonts"),
|
|
filepath.Join(home, ".local/share/fonts"),
|
|
"/usr/local/share/fonts",
|
|
"/usr/share/fonts",
|
|
}
|
|
|
|
for _, dir := range baseDirs.data {
|
|
appDirs = append(appDirs, filepath.Join(dir, "applications"))
|
|
fontDirs = append(fontDirs, filepath.Join(dir, "fonts"))
|
|
}
|
|
|
|
baseDirs.applications = uniquePaths(appDirs)
|
|
baseDirs.fonts = uniquePaths(fontDirs)
|
|
}
|
|
|
|
func initUserDirs(home string) {
|
|
UserDirs.Desktop = xdgPath(envDesktopDir, filepath.Join(home, "Desktop"))
|
|
UserDirs.Download = xdgPath(envDownloadDir, filepath.Join(home, "Downloads"))
|
|
UserDirs.Documents = xdgPath(envDocumentsDir, filepath.Join(home, "Documents"))
|
|
UserDirs.Music = xdgPath(envMusicDir, filepath.Join(home, "Music"))
|
|
UserDirs.Pictures = xdgPath(envPicturesDir, filepath.Join(home, "Pictures"))
|
|
UserDirs.Videos = xdgPath(envVideosDir, filepath.Join(home, "Videos"))
|
|
UserDirs.Templates = xdgPath(envTemplatesDir, filepath.Join(home, "Templates"))
|
|
UserDirs.PublicShare = xdgPath(envPublicShareDir, filepath.Join(home, "Public"))
|
|
}
|