syslog.h: Add LOG_NFACILITIES, LOG_FACMASK, LOG_FAC.
[haiku.git] / data / etc / profile.d / xdg_basedirs.sh
bloba546398f19dd75d315c2d1119d94840e0b584737
2 # Haiku setup for
3 # XDG Base Directory Specification
5 # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
7 # defaults to ~/.config
8 export XDG_CONFIG_HOME="`finddir B_USER_SETTINGS_DIRECTORY`"
10 # defaults to ~/.local/share
11 export XDG_DATA_HOME="`finddir B_USER_NONPACKAGED_DATA_DIRECTORY`"
13 # defaults to /etc/xdg
14 export XDG_CONFIG_DIRS="`finddir B_SYSTEM_SETTINGS_DIRECTORY`"
15 # XXX: Should we add B_USER_ETC_DIRECTORY?
17 # default to /usr/local/share/:/usr/share/
18 export XDG_DATA_DIRS="`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY`:\
19 `finddir B_SYSTEM_DATA_DIRECTORY`"
21 # defaults to ~/.cache
22 export XDG_CACHE_HOME="`finddir B_USER_CACHE_DIRECTORY`"
24 # TODO:
25 # This one is used for session stuff (sockets, pipes...)
26 # It must be owned by the user, with permissions 0700.
27 # It is supposed to be cleaned up on last log-out.
28 # Apps will fall back to /tmp usually anyway.
29 #export XDG_RUNTIME_DIR="`finddir B_USER_VAR_DIRECTORY`/tmp"