[shell-common] Add XDG exports

This commit is contained in:
2025-12-23 18:05:08 +00:00
parent f61ffaa4ff
commit ce04253da0

View File

@@ -1,5 +1,14 @@
# User specific environment
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
# XDG Base Directories
export XDG_BIN_HOME="$HOME/.local/bin"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_RUNTIME_DIR="${TMPDIR}/runtime-${UID}"
export XDG_STATE_HOME="$HOME/.local/state"
PATH="$XDG_BIN_HOME:$HOME/bin:$PATH"
export PATH
# User specific environment and startup programs