dotfiles/.bash_functions
Michael Grote ec4c75bd09 git: make gp great again
Signed-off-by: Michael Grote <michael.grote@dataport.de>
2024-09-16 09:43:47 +02:00

12 lines
272 B
Bash

#!/bin/bash
function ssh {
# benennt das aktuelle tmux-windows nach dem ssh-ziel
# baut ssh-verbindung auf
if [ -n "${TMUX}" ]; then
tmux rename-window "${@: -1}"
fi
command ssh "$@"
if [ -n "${TMUX}" ]; then
tmux rename-window "$(hostname -f)"
fi
}