dotfiles/config/zsh/ssh.zsh

7 lines
179 B
Bash

if [[ ($uname -a) = "Darwin" ]]; then
function ssh() {
osascript -e 'display notification "Touch the YubiKey" with title "2fa required"'
/opt/homebrew/bin/ssh $*
}
fi