feat(xdg): add XDG BaseDirectory environment variables

This commit is contained in:
Victor Westerlund 2025-09-23 21:04:59 +02:00
parent f0bf01386b
commit a01eb0332b
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -13,3 +13,9 @@ export GPG_TTY=$(tty)
export S="/var/www/sites"
export V="/var/www/fw/vegvisir/"
export R="/var/www/fw/reflect/"
# Add XDG Base Directory specifications
export XDG_BIN_HOME="$HOME/.local/bin"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"