diff options
-rw-r--r-- | gpg-agent.conf | 2 | ||||
-rw-r--r-- | zshrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gpg-agent.conf b/gpg-agent.conf index 8da9c20..f30d462 100644 --- a/gpg-agent.conf +++ b/gpg-agent.conf @@ -1,3 +1,3 @@ default-cache-ttl 7200 max-cache-ttl 86400 -pinentry-program /usr/bin/pinentry +pinentry-program /usr/bin/pinentry-qt @@ -65,5 +65,5 @@ source ~/.zsh_fzf_key_bindings source ~/.zsh_fzf_completion mkcd() { - mkdir $1 && cd $1 + mkdir -p $1 && cd $1 } |