diff --git a/.bash_extra b/.bash_extra index eb3ae40..bb93cd2 100644 --- a/.bash_extra +++ b/.bash_extra @@ -21,20 +21,18 @@ PATH=$PATH:"${HOME}/dotfiles/scripts" ## check interactive shell https://unix.stackexchange.com/questions/26676/how-to-check-if-a-shell-is-login-interactive-batch if [[ $- == *i* ]] ; then - ### git-bash - if [ "$HOSTNAME" = lzeorpt001 ]; then - source /usr/share/git-core/contrib/completion/git-prompt.sh - fi ### root alias alias root='sudo -H -u root /usr/bin/sudo2uls' + if [ "$HOSTNAME" = lzeorpt001 ]; then + ### git-bash + source /usr/share/git-core/contrib/completion/git-prompt.sh + ### keychain + export GPG_TTY=$(tty) + fi ### tmux auto attach if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then tmux attach -t default || tmux new -s default fi - ### keychain - if [ "$HOSTNAME" = lzeorpt001 ]; then - export GPG_TTY=$(tty) - fi if [ "$(hostname -s)" == "lzeorpt001" ] || [ "$(hostname -s)" == "lbdlspa001" ]; then eval $(keychain -q --eval --timeout 60 --agents ssh,gpg) fi