configs/scripts/rofi-pass-simple.sh

14 lines
228 B
Bash
Raw Normal View History

2017-10-17 21:52:20 +02:00
#!/bin/sh
if [ ! -z "$PASSWORD_STORE_DIR" ]; then
cd "$PASSWORD_STORE_DIR"
else
cd "$HOME/.password-store"
fi
if [ -z $@ ]; then
find -name \*.gpg | sed 's/\.\/\(.*\)\.gpg/\1/'
else
nohup pass show -c "$@" >/dev/null &
fi