vereinfache ifs
All checks were successful
ci/woodpecker/push/lint Pipeline was successful

This commit is contained in:
Michael Grote 2024-05-28 20:19:21 +02:00 committed by Michael Grote
parent 15e4bc7e5d
commit 2ae6eaa36a

View file

@ -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