aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-03-20 00:18:50 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2014-03-20 00:18:50 -0600
commit553d096111061b749bd17e5fe386c5ff6c888e1e (patch)
treed6dde5d40413a6a24974d7eca8a4d8cd241d4981 /src
parentSimplify exports. (diff)
downloadpassword-store-553d096111061b749bd17e5fe386c5ff6c888e1e.tar.xz
password-store-553d096111061b749bd17e5fe386c5ff6c888e1e.zip
Style.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/password-store.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index 9cfae7f..6fa32c1 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -118,9 +118,7 @@ clip() {
(
sleep 45
now="$(xclip -o -selection clipboard | base64)"
- if [[ $now != $(echo -n "$1" | base64) ]]; then
- before="$now"
- fi
+ [[ $now != $(echo -n "$1" | base64) ]] && before="$now"
# It might be nice to programatically check to see if klipper exists,
# as well as checking for other common clipboard managers. But for now,