Fix blank check

lol where da unit tests at
This commit is contained in:
Chris Down 2016-11-02 16:55:39 -06:00
parent e8ebe8b27d
commit 6e6c4ed430

View file

@ -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