summaryrefslogtreecommitdiff
path: root/.zsh_pass
diff options
context:
space:
mode:
authorHendrik Jäger <hendrik@securosys.ch>2018-03-06 15:00:37 +0100
committerHendrik Jäger <hendrik@securosys.ch>2018-03-06 15:02:57 +0100
commit692f0974713ec8d0c4dfdbd288a5fd308d692a94 (patch)
treec7fd484a04b5fd019f85d39cfc35b3877255fdb1 /.zsh_pass
parent16a02594b071a14f11d157f30faa72801e32349e (diff)
Add 'pass' functionssecurosys
Diffstat (limited to '.zsh_pass')
-rw-r--r--.zsh_pass13
1 files changed, 10 insertions, 3 deletions
diff --git a/.zsh_pass b/.zsh_pass
index 5825daf..4a7e5de 100644
--- a/.zsh_pass
+++ b/.zsh_pass
@@ -1,7 +1,14 @@
+PERSONAL_PASSWORD_STORE_DIR=$HOME/LocalData/henksfiles/password-store
compdef _pass mypass
-
-zstyle ':completion::complete:mypass::' prefix "$HOME/Data/henksfiles/password-store"
+zstyle ':completion::complete:mypass::' prefix "$HOME/LocalData/henksfiles/password-store"
mypass() {
- PASSWORD_STORE_DIR=$HOME/Data/henksfiles/password-store pass $@
+ PASSWORD_STORE_DIR=$HOME/LocalData/henksfiles/password-store pass $@
+}
+
+OLD_PASSWORD_STORE_DIR="$HOME/LocalData/securosys/secure/old_phrases"
+compdef _pass oldpass
+zstyle ':completion::complete:oldpass::' prefix "$OLD_PASSWORD_STORE_DIR"
+oldpass() {
+ PASSWORD_STORE_DIR=$OLD_PASSWORD_STORE_DIR pass $@
}