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
parent 3c8f4ef49a
commit e784de468e

View file

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