From e7f78c8be5a28805a858ab48ca71c944d62880e2 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 23 Sep 2025 21:06:13 +0200 Subject: [PATCH] feat(xdg): add XDG BaseDirectory environment variables (#48) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/48 --- .bash_profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.bash_profile b/.bash_profile index 5b0efd8..3ab1d68 100644 --- a/.bash_profile +++ b/.bash_profile @@ -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" \ No newline at end of file