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