feat(xdg): add XDG BaseDirectory environment variables (#48)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/48
This commit is contained in:
Victor Westerlund 2025-09-23 21:06:13 +02:00
parent f0bf01386b
commit e7f78c8be5

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"