From f96930a2bdd050f3b8a42c1ac921d2ae7d487215 Mon Sep 17 00:00:00 2001 From: randomuser Date: Sun, 26 Jun 2022 19:01:20 -0500 Subject: [PATCH] add xdg config --- bash/profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bash/profile b/bash/profile index 78775c7..d4dce5a 100644 --- a/bash/profile +++ b/bash/profile @@ -14,6 +14,12 @@ export LESSHISTFILE="-" # remind export DOTREMINDERS="$HOME/git/calendar/reminders" +# XDG config +export XDG_CONFIG_HOME="$HOME/.config" +export XDG_CACHE_HOME="$HOME/.cache" +export XDG_DATA_HOME="$HOME/.local/share" +export XDG_STATE_HOME="$HOME/.local/state" + # source the bashrc(s) [ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc [ -f $HOME/.bashrc ] && . $HOME/.bashrc