mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 13:11:43 +00:00
12 lines
285 B
Bash
Executable File
12 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
shopt -s nullglob globstar
|
|
|
|
password_files=( ~/.password-store/**/*.gpg )
|
|
password_files=( "${password_files[@]##*/.password-store/}" )
|
|
password_files=( "${password_files[@]%.gpg}" )
|
|
|
|
password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@")
|
|
|
|
pass show -c "$password"
|