From 4c145641c58a015094fa9e30cf24a0eb81ad58a7 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 27 Mar 2023 10:39:59 -0700 Subject: [PATCH] [zsh] Background the ssh-add call in init_profile_darwin --- zsh/func/init_profile_darwin | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/zsh/func/init_profile_darwin b/zsh/func/init_profile_darwin index cabb575..73b5905 100644 --- a/zsh/func/init_profile_darwin +++ b/zsh/func/init_profile_darwin @@ -1,9 +1,6 @@ -#!/usr/bin/env zsh # Eryn Wells -if ssh-add --apple-load-keychain; then - echo -fi +( ssh-add --apple-load-keychain & ) 1>/dev/null 2>&1 autoload -Uz init_profile_darwin_say_hello init_profile_darwin_say_hello