updated bashrc for new install

added .xsessionrc to do /home/rmorrow/bin and /home/rmorrow/.local/bin path additions for non-login shells
This commit is contained in:
Radar231 2024-04-09 08:52:07 -04:00
parent 9cb0cddbee
commit 0780638709
2 changed files with 12 additions and 6 deletions

View File

@ -114,12 +114,8 @@ fi
export EDITOR="vim"
export SOPS_AGE_RECIPIENTS="age1x7aazmg26qf5vm7hnvxjqy77yvv5lc7jez7untjfnwrg8pa6aqysxlaa42"
export SOPS_AGE_KEY_FILE="${HOME}/bin/age-key.txt"
#export SOPS_AGE_RECIPIENTS="age1x7aazmg26qf5vm7hnvxjqy77yvv5lc7jez7untjfnwrg8pa6aqysxlaa42"
#export SOPS_AGE_KEY_FILE="${HOME}/bin/age-key.txt"
# [ -f ~/.fzf.bash ] && source ~/.fzf.bash
# Install Ruby Gems to ~/gems
export GEM_HOME="$HOME/gems"
export PATH="$HOME/gems/bin:$PATH"

10
.xsessionrc Normal file
View File

@ -0,0 +1,10 @@
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi