diff options
author | Himbeer <himbeer@disroot.org> | 2024-05-14 11:42:12 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-05-14 11:42:12 +0200 |
commit | 6242d054f6fe8de996e2279338da9b65e17fcd3d (patch) | |
tree | fdc27631bb174df5ab288e56c17b632e9eb54cf2 | |
parent | 8079bb25a3ceb56af701b492566194c586f5d053 (diff) |
zshrc: Set -p flag on mkcd mkdir
-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 } |