20 lines
401 B
Bash
Executable file
20 lines
401 B
Bash
Executable file
#!/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
|
|
if [ -z "$WAYLAND_DISPLAY" ]; then
|
|
# X11 version
|
|
nohup pass show -c "$@" >/dev/null &
|
|
else
|
|
# Wlroots (sway) version
|
|
nohup sh -c "pass show \"$@\" | head -n 1 | wl-copy --trim-newline" >/dev/null &
|
|
fi
|
|
fi
|