dataport: bash: combine tmux-auto-attach and keychain into one function

This commit is contained in:
Michael Grote 2024-05-06 23:16:31 +02:00 committed by Michael Grote
parent c2e016919a
commit a2d31375b3

View file

@ -12,19 +12,27 @@ source "${HOME}/dotfiles/.bash_ps1"
# add my scripts to PATH # add my scripts to PATH
PATH=$PATH:"${HOME}/dotfiles/scripts" PATH=$PATH:"${HOME}/dotfiles/scripts"
### tmux auto attach ## check interactive shell https://unix.stackexchange.com/questions/26676/how-to-check-if-a-shell-is-login-interactive-batch
# Check if the user ID is not 0 (root) if [[ $- == *i* ]] ; then
if [ "$EUID" -ne 0 ]; then ### git-bash
# then auto attach 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'
### 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
eval $(keychain -q --eval --timeout 60 --agents ssh,gpg)
fi
fi fi
### keychain
eval "$(keychain -q --eval --timeout 60 --agents ssh,gpg)"
export GPG_TTY=$(tty)
### Praktische Dinge ### Praktische Dinge
# Deaktiviere FlowControl # Deaktiviere FlowControl
# https://unix.stackexchange.com/questions/332791/how-to-permanently-disable-ctrl-s-in-terminal # https://unix.stackexchange.com/questions/332791/how-to-permanently-disable-ctrl-s-in-terminal