From a01eb0332b482cd58cc0c4f421e72604421698d0 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 23 Sep 2025 21:04:59 +0200 Subject: [PATCH] feat(xdg): add XDG BaseDirectory environment variables --- .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