From ba10e5915ae31611922e54b3ba36c447be3695c9 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Mon, 1 Jul 2024 00:13:38 +0200 Subject: [PATCH] Delete notification for ssh. --- config/zsh/.zshrc | 1 - config/zsh/ssh.zsh | 6 ------ 2 files changed, 7 deletions(-) delete mode 100644 config/zsh/ssh.zsh diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index 071d946..497a30f 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -23,7 +23,6 @@ source $ZDOTDIR/aliases.zsh source $ZDOTDIR/cleanhome.zsh source $ZDOTDIR/fzf.zsh source $ZDOTDIR/keys.zsh -source $ZDOTDIR/ssh.zsh # source modules source ~/.local/git/zsh_modules/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh diff --git a/config/zsh/ssh.zsh b/config/zsh/ssh.zsh deleted file mode 100644 index a3fd6ef..0000000 --- a/config/zsh/ssh.zsh +++ /dev/null @@ -1,6 +0,0 @@ -if [[ $(uname -s) = "Darwin" ]]; then - function ssh() { - osascript -e 'display notification "Touch the YubiKey" with title "2fa required"' - /opt/homebrew/bin/ssh $* - } -fi