From 02d5592104308391c1503b376e0652c099e6df40 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Mon, 14 Jun 2021 20:16:50 -0700 Subject: [PATCH] Fix default for XDG_CONFIG_DIRS --- base/.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.profile b/base/.profile index d12f590..d99fb93 100644 --- a/base/.profile +++ b/base/.profile @@ -10,7 +10,7 @@ export XDG_CACHE_HOME=${XDG_CACHE_HOME:="$HOME/.cache"} export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:="$HOME/.config"} export XDG_DATA_HOME=${XDG_DATA_HOME:="$HOME/.local/share"} export XDG_STATE_HOME=${XDG_STATE_HOME:="$HOME/.local/state"} -export XDG_CONFIG_DIRS="${XDG_DATA_DIRS:="/etc/xdg"}" +export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:="/etc/xdg"}" export XDG_DATA_DIRS="${XDG_DATA_DIRS:="/usr/local/share:/usr/share"}" if [ "${XDG_RUNTIME_DIR}" = "" ]; then