From 7a351bbdb027c8b8ce94abbd4aac39496eaa993a Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Mon, 25 Sep 2023 13:16:53 +0100 Subject: [PATCH] Add /usr/local/etc/xdg to $XDG_CONFIG_DIRS --- roles/home-cli/files/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/home-cli/files/profile b/roles/home-cli/files/profile index ee391e6..1ed2e17 100644 --- a/roles/home-cli/files/profile +++ b/roles/home-cli/files/profile @@ -6,7 +6,7 @@ export LANG=C.UTF-8 # Set up XDG variables. See: # https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html export XDG_DATA_DIRS=${XDG_DATA_DIRS:-/usr/local/share:/usr/share} -export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS:-/etc/xdg} +export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS:-/usr/local/etc/xdg:/etc/xdg} export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}" export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"