File: user.go

package info (click to toggle)
golang-github-kyoh86-xdg 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 13
file content (20 lines) | stat: -rw-r--r-- 1,108 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package xdg

const (
	// DesktopDirEnv is the name of the environment variable holding a user desktop directory path.
	DesktopDirEnv = "XDG_DESKTOP_DIR"
	// DownloadDirEnv is the name of the environment variable holding a user download directory path.
	DownloadDirEnv = "XDG_DOWNLOAD_DIR"
	// DocumentsDirEnv is the name of the environment variable holding a user documents directory path.
	DocumentsDirEnv = "XDG_DOCUMENTS_DIR"
	// MusicDirEnv is the name of the environment variable holding a user music directory path.
	MusicDirEnv = "XDG_MUSIC_DIR"
	// PicturesDirEnv is the name of the environment variable holding a user pictures directory path.
	PicturesDirEnv = "XDG_PICTURES_DIR"
	// VideosDirEnv is the name of the environment variable holding a user videos directory path.
	VideosDirEnv = "XDG_VIDEOS_DIR"
	// TemplatesDirEnv is the name of the environment variable holding a user templates directory path.
	TemplatesDirEnv = "XDG_TEMPLATES_DIR"
	// PublicShareDirEnv is the name of the environment variable holding a user public share directory path.
	PublicShareDirEnv = "XDG_PUBLICSHARE_DIR"
)