diff options
author | Adam Stück <adam@adast.xyz> | 2023-03-22 07:49:52 +0100 |
---|---|---|
committer | Adam Stück <adam@adast.xyz> | 2023-04-28 20:31:52 +0200 |
commit | 1abce784cf269fd98ee5faa09e52ba642f2e61ec (patch) | |
tree | 716d9b1961dc7235c665747454f03d5f488bffac /.local/bin/menu/pass | |
parent | c1fae7c333a7c89347b1955e23aadae47e28f20f (diff) |
switched from i3 to sway
Diffstat (limited to '.local/bin/menu/pass')
-rwxr-xr-x | .local/bin/menu/pass | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.local/bin/menu/pass b/.local/bin/menu/pass new file mode 100755 index 0000000..86fd1ee --- /dev/null +++ b/.local/bin/menu/pass @@ -0,0 +1,24 @@ +#!/bin/sh + +MENU_CMD="bemenu -p 'pass'" + +entry=$(find "$PASSWORD_STORE_DIR" -name '*.gpg' |\ + sed "s|$PASSWORD_STORE_DIR/||" |\ + sed "s|.gpg||" |\ + sort -n |\ + eval "$MENU_CMD") || exit 1 + +details=$(pass "$entry") || exit 1 +user=$(echo "$details" | sed -n '2p' | sed 's|user: ||') +pass=$(echo "$details" | head -n1) + +case "$(printf "autotype\npass\nuser" | eval "$MENU_CMD")" in + autotype) + wtype "$user" + wtype -k Tab + wtype "$pass" ;; + pass) + wtype "$pass" ;; + user) + wtype "$user" ;; +esac |