summaryrefslogtreecommitdiff
path: root/rofi-pass.sh
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2023-12-19 10:44:47 -0500
committerAdam T. Carpenter <atc@53hor.net>2023-12-19 10:44:47 -0500
commit8631335ebd045a374d7e57d36c8023ff446eec8d (patch)
tree6e29c91f422585285c1df6abaec18aa0065b5bbc /rofi-pass.sh
parentea32298b5db6b5f720ad6f053cb3e4b7eca2853a (diff)
downloadscripts-master.tar.xz
scripts-master.zip
feat: better rofi pass using builtin script apiHEADmaster
Simple Rofi pass acts as a modi for otp or pass selection
Diffstat (limited to 'rofi-pass.sh')
-rwxr-xr-xrofi-pass.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/rofi-pass.sh b/rofi-pass.sh
new file mode 100755
index 0000000..1366466
--- /dev/null
+++ b/rofi-pass.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+prefix=${PASSWORD_STORE_DIR:-~/.password-store}
+
+get_passwords() {
+ find -s "$prefix" -type f -name '*.gpg'
+}
+
+trim_prefix() {
+ while read line
+ do
+ printf '%s\n' "${line##$prefix/}"
+ done
+}
+
+trim_gpg() {
+ while read line
+ do
+ printf '%s\n' "${line%%.gpg}"
+ done
+}
+
+[ -z "$2" ] && get_passwords | trim_prefix | trim_gpg && exit 0
+
+case "$1" in
+ otp*)
+ pass otp --clip "${2##totp:}" >/dev/null 2>&1 &
+ ;;
+ pass*)
+ pass show --clip "${2##password:}" >/dev/null 2>&1 &
+ ;;
+esac