<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 16, 2015 at 8:38 PM, Wieland Hoffmann <span dir="ltr"><<a href="mailto:themineo@gmail.com" target="_blank">themineo@gmail.com</a>></span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
diff --git a/src/password-store.sh b/src/password-store.sh<br>
index d4e9515..3f7417d 100755<br>
--- a/src/password-store.sh<br>
+++ b/src/password-store.sh<br>
@@ -131,11 +131,11 @@ clip() {<br>
        # This base64 business is because bash cannot store binary data in a shell<br>
        # variable. Specifically, it cannot store nulls nor (non-trivally) store<br>
        # trailing new lines.<br>
-<br>
        local sleep_argv0="password store sleep on display $DISPLAY"<br>
        pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.5<br>
        local before="$(xclip -o -selection "$X_SELECTION" | base64)"<br></blockquote><div> </div><div>As you suggested, 2>/dev/null on the invocation above would be useful.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
        echo -n "$1" | xclip -selection "$X_SELECTION"<br>
+       [ $? -ne 0 ] && die "Error: Could not copy data to the clipboard."<br></blockquote><div><br></div><div>Pass uses [[ and ]] when it can.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
        (<br>
                ( exec -a "$sleep_argv0" sleep "$CLIP_TIME" )<br>
                local now="$(xclip -o -selection "$X_SELECTION" | base64)"<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.2.2<br>
<br>
_______________________________________________<br>
Password-Store mailing list<br>
<a href="mailto:Password-Store@lists.zx2c4.com">Password-Store@lists.zx2c4.com</a><br>
<a href="http://lists.zx2c4.com/mailman/listinfo/password-store" target="_blank">http://lists.zx2c4.com/mailman/listinfo/password-store</a><br>
</font></span></blockquote></div><br>
<br></div></div>