aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts/pass
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2020-03-09 13:26:21 +0100
committerKarel Kočí <karel.koci@nic.cz>2020-03-09 13:26:21 +0100
commitb0dc1eeb37f9c75b82ee1f110338508e1cafecf6 (patch)
tree4f428483c180a5b3605e8b3b0b89e95140f85208 /config/i3/scripts/pass
parent6fb6b40249d7c33f999a6cb666c17dbc5de54df9 (diff)
downloadmyconfigs-b0dc1eeb37f9c75b82ee1f110338508e1cafecf6.tar.gz
myconfigs-b0dc1eeb37f9c75b82ee1f110338508e1cafecf6.tar.bz2
myconfigs-b0dc1eeb37f9c75b82ee1f110338508e1cafecf6.zip
i3: get password from store without terminal
Diffstat (limited to 'config/i3/scripts/pass')
-rwxr-xr-xconfig/i3/scripts/pass6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/i3/scripts/pass b/config/i3/scripts/pass
new file mode 100755
index 0000000..aa2ad96
--- /dev/null
+++ b/config/i3/scripts/pass
@@ -0,0 +1,6 @@
+#!/bin/sh
+find ~/.password-store -type f -printf '%P\n' | \
+ sed 's/\.gpg$//' | dmenu -p 'Pass:' | \
+ while read -r psw; do
+ pass -c "$psw"
+done