From ea207177f848df56411e6c3189d61992d7250818 Mon Sep 17 00:00:00 2001 From: DustVoice Date: Tue, 31 May 2022 22:01:49 +0200 Subject: [PATCH] Revert some unneccessary stuff --- .zsh_alias | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.zsh_alias b/.zsh_alias index 8aec22d..a55aa79 100644 --- a/.zsh_alias +++ b/.zsh_alias @@ -184,8 +184,8 @@ function hyperv-gpg-agent-extra() { } function hyperv-ssh-agent() { - #socket_path="$HOME/.gnupg/S.gpg-agent.ssh" - socket_path="$HOME/.ssh/agent.sock" + socket_path="$HOME/.gnupg/S.gpg-agent.ssh" + #socket_path="$HOME/.ssh/agent.sock" host_ip=$(ip route show 0.0.0.0/0 dev eth0 | cut -d\ -f3) if [[ -f $socket_path ]]; then rm $socket_path @@ -194,8 +194,7 @@ function hyperv-ssh-agent() { } function hyperv-agents() { - hyperv-gpg-agent - #hyperv-gpg-agent-extra + hyperv-gpg-agent & hyperv-ssh-agent }