From 6e6c4ed4309847bfcbbc0f086af3e1bb39c5faee Mon Sep 17 00:00:00 2001 From: Chris Down Date: Wed, 2 Nov 2016 16:55:39 -0600 Subject: [PATCH] Fix blank check lol where da unit tests at --- clipmenud | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clipmenud b/clipmenud index 92d2c5f..a65e84e 100755 --- a/clipmenud +++ b/clipmenud @@ -84,7 +84,7 @@ while sleep "${CLIPMENUD_SLEEP:-0.5}"; do debug "Data after stripping: $data" - if [[ $data == *[^[:blank:]]* ]]; then + if [[ $data != *[^[:blank:]]* ]]; then debug "Skipping as clipboard is only blank" continue fi