Some SSH stuff

This commit is contained in:
Geoffrey Frogeye 2025-04-17 15:19:12 +02:00
parent 2ce896491b
commit 534e246cec
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 9 additions and 21 deletions

View file

@ -58,15 +58,4 @@ then
fi
# To keep until https://github.com/openssh/openssh-portable/commit/f64f8c00d158acc1359b8a096835849b23aa2e86
# is merged
function _ssh {
if [ "${TERM}" = "alacritty" ]
then
TERM=xterm-256color ssh "$@"
else
ssh "$@"
fi
}
alias ssh='_ssh'
_ssh -t "$@" "$(cat "${CACHE_DIR}/cmd")"
ssh -t "$@" "$(cat "${CACHE_DIR}/cmd")"