Some more comments on xdg_basedirs

At least WebOOB makes some use of those,
it should help unclutter the home directory.
This commit is contained in:
François Revol 2014-07-30 00:04:11 +02:00
parent 70f91e39aa
commit b7e55f797d
1 changed files with 11 additions and 2 deletions

View File

@ -4,17 +4,26 @@
#
# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
# defaults to ~/.config
export XDG_CONFIG_HOME="`finddir B_USER_SETTINGS_DIRECTORY`"
# defaults to ~/.local/share
export XDG_DATA_HOME="`finddir B_USER_NONPACKAGED_DATA_DIRECTORY`"
# defaults to /etc/xdg
export XDG_CONFIG_DIRS="`finddir B_SYSTEM_SETTINGS_DIRECTORY`"
# XXX:B_USER_ETC_DIRECTORY?
# XXX: Should we add B_USER_ETC_DIRECTORY?
# default to /usr/local/share/:/usr/share/
export XDG_DATA_DIRS="`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY`:\
`finddir B_SYSTEM_DATA_DIRECTORY`"
# defaults to ~/.cache
export XDG_CACHE_HOME="`finddir B_USER_CACHE_DIRECTORY`"
# XXX:TODO
# TODO:
# This one is used for session stuff (sockets, pipes...)
# It must be owned by the user, with permissions 0700.
# It is supposed to be cleaned up on last log-out.
# Apps will fall back to /tmp usually anyway.
#export XDG_RUNTIME_DIR="`finddir B_USER_VAR_DIRECTORY`/tmp"