diff --git a/shell/bashrc b/shell/bashrc index f65f4e2..e127a73 100644 --- a/shell/bashrc +++ b/shell/bashrc @@ -8,9 +8,10 @@ PS1='\[\e[0;1;91m\][\[\e[0;1;38;5;87m\]\u\[\e[0;0;38;5;123m\]@\[\e[0;0;38;5;159m PROMPT_COMMAND="echo" # Line jump after every command # General configs -PATH="$HOME/.config/scripts${PATH:+:${PATH}}" # Enables custom scripts dir -PATH="$HOME/.config/scripts/menu${PATH:+:${PATH}}" PATH="$HOME/.config/scripts/status${PATH:+:${PATH}}" +PATH="$HOME/.config/scripts/menu${PATH:+:${PATH}}" +PATH="$HOME/.config/scripts${PATH:+:${PATH}}" +PATH="$HOME/.local/bin${PATH:+:${PATH}}" # Custom PATHs for executables bind "set completion-ignore-case on" # Case insensitive TAB complete shopt -s cdspell # Autocorrect directory name shopt -s autocd # cd into dir by typing the name diff --git a/shell/xdgspec b/shell/xdgspec index 5d8ec39..d1d7857 100644 --- a/shell/xdgspec +++ b/shell/xdgspec @@ -17,3 +17,4 @@ export \ WGETRC="$XDG_CONFIG_HOME/wget/wgetrc" \ ELECTRUMDIR="$XDG_DATA_HOME/electrum" \ CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv" \ + GNUPGHOME="$XDG_DATA_HOME/gnupg" \