mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
f395ed8f03
+ Fixed dunst
20 lines
404 B
Bash
Executable File
20 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
|
|
shopt -s nullglob globstar
|
|
|
|
|
|
if command -v myrofi >/dev/null 2>&1;
|
|
then
|
|
program="myrofi -no-show-icons -dmenu"
|
|
else
|
|
program="dmenu"
|
|
fi
|
|
|
|
password_files=( ~/.password-store/**/*.gpg )
|
|
password_files=( "${password_files[@]##*/.password-store/}" )
|
|
password_files=( "${password_files[@]%.gpg}" )
|
|
|
|
password=$(printf '%s\n' "${password_files[@]}" | $program "$@")
|
|
|
|
pass show -c "$password"
|