From e573a5722864b6250dc465904adc5aed57ede8de Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sat, 21 Jun 2025 21:58:34 +0400 Subject: fix(profile): set `XINITRC` after setting `XDG_CONFIG_HOME` --- config/shell/profile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'config') diff --git a/config/shell/profile b/config/shell/profile index c12de58..5560f4e 100644 --- a/config/shell/profile +++ b/config/shell/profile @@ -1,13 +1,14 @@ # Directories and Files -export BASHRC="${HOME}/.bashrc" -export ZSHRC="${HOME}/.zshrc" -export XINITRC="${XDG_CONFIG_HOME}/x11/xinitrc" export XDG_BIN_DIR="${HOME}/.local/bin" export XDG_CACHE_HOME="${HOME}/.cache" export XDG_CONFIG_HOME="${HOME}/.config" export XDG_DATA_HOME="${HOME}/.local/share" export XDG_STATE_HOME="${HOME}/.local/state" +export BASHRC="${HOME}/.bashrc" +export ZSHRC="${HOME}/.zshrc" +export XINITRC="${XDG_CONFIG_HOME}/x11/xinitrc" + mkdir -p "${XDG_BIN_DIR}" export PATH="${XDG_BIN_DIR}:${PATH}" -- cgit v1.2.3