mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-22 18:41:36 +01:00
95ef061711
update xdg update survey update go-sdk Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/316 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package xdg
|
|
|
|
// XDG user directories environment variables.
|
|
const (
|
|
envDesktopDir = "XDG_DESKTOP_DIR"
|
|
envDownloadDir = "XDG_DOWNLOAD_DIR"
|
|
envDocumentsDir = "XDG_DOCUMENTS_DIR"
|
|
envMusicDir = "XDG_MUSIC_DIR"
|
|
envPicturesDir = "XDG_PICTURES_DIR"
|
|
envVideosDir = "XDG_VIDEOS_DIR"
|
|
envTemplatesDir = "XDG_TEMPLATES_DIR"
|
|
envPublicShareDir = "XDG_PUBLICSHARE_DIR"
|
|
)
|
|
|
|
// UserDirectories defines the locations of well known user directories.
|
|
type UserDirectories struct {
|
|
// Desktop defines the location of the user's desktop directory.
|
|
Desktop string
|
|
|
|
// Download defines a suitable location for user downloaded files.
|
|
Download string
|
|
|
|
// Documents defines a suitable location for user document files.
|
|
Documents string
|
|
|
|
// Music defines a suitable location for user audio files.
|
|
Music string
|
|
|
|
// Pictures defines a suitable location for user image files.
|
|
Pictures string
|
|
|
|
// VideosDir defines a suitable location for user video files.
|
|
Videos string
|
|
|
|
// Templates defines a suitable location for user template files.
|
|
Templates string
|
|
|
|
// PublicShare defines a suitable location for user shared files.
|
|
PublicShare string
|
|
}
|