diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-28 21:05:29 +0100 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-28 21:05:29 +0100 | 
| commit | 2973d3f55473c5aa73e6b211925f35db53f1acf0 (patch) | |
| tree | 315d5bd4761feb1902b198d5a4674232ef4f9c92 | |
| parent | d9debe5f9f76617738109765cdc20108b4119621 (diff) | |
remove output from keychain
| -rw-r--r-- | config/zshrc/.zshrc | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/config/zshrc/.zshrc b/config/zshrc/.zshrc index 4c72405..c54e637 100644 --- a/config/zshrc/.zshrc +++ b/config/zshrc/.zshrc @@ -19,8 +19,9 @@ export PASSWORD_STORE_CLIP_TIME=5  if [ ! $(pgrep Xorg) ] && [ "tty1" = "$(basename $(tty))" ]  then  	clear -	eval `keychain --eval --quiet --agents gpg 3A626DD20A32EB2E5DD9CE71CFD9ABC97158CD5D` -	eval `keychain --noask --eval --quiet --agents ssh` +	eval `keychain --eval --quiet --agents gpg 3A626DD20A32EB2E5DD9CE71CFD9ABC97158CD5D 2>/dev/null` +	eval `keychain --noask --eval --quiet --agents ssh 2>/dev/null` +	clear      startx 2&> /dev/null      exit  fi  | 
