dotfiles/config/zsh/ssh.zsh

7 lines
179 B
Bash
Raw Normal View History

2024-06-23 14:08:06 +02:00
if [[ $(uname -s) = "Darwin" ]]; then
function ssh() {
osascript -e 'display notification "Touch the YubiKey" with title "2fa required"'
/opt/homebrew/bin/ssh $*
}
fi