[pass] [PATCH 2/2] Add support for GPaste
Marc-Antoine Perennou
Marc-Antoine at Perennou.com
Fri Nov 20 22:26:48 CET 2015
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine at Perennou.com>
---
src/password-store.sh | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/src/password-store.sh b/src/password-store.sh
index 06fb33f..4fa0c1d 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -152,10 +152,31 @@ clip_xclip() {
echo "$before" | base64 -d | xclip -selection "$X_SELECTION"
) 2>/dev/null & disown
}
+clip_gpaste() {
+ # GPaste is a clipboard manager with built-in password support
+ # it will never write it to disk or print it unless you paste it
+ local sleep_argv0="$1"
+ shift
+ if echo -n "$1" | gpaste-client add-password "$2" >/dev/null 2>&1; then
+ (
+ ( exec -a "$sleep_argv0" sleep "$CLIP_TIME" )
+ gpaste-client delete-password "$2"
+ ) 2>/dev/null & disown
+ else
+ # fallback to xclip
+ clip_xclip "$sleep_argv0" "$@"
+ fi
+}
clip() {
local sleep_argv0="password store sleep on display $DISPLAY"
pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.5
- clip_xclip "$sleep_argv0" "$@"
+ local gpaste=0
+ which gpaste-client &>/dev/null && gpaste=1
+ if [[ $gpaste -eq 1 ]]; then
+ clip_gpaste "$sleep_argv0" "$@"
+ else
+ clip_xclip "$sleep_argv0" "$@"
+ fi
echo "Copied $2 to clipboard. Will clear in $CLIP_TIME seconds."
}
tmpdir() {
--
2.6.3
More information about the Password-Store
mailing list