clipmenu

Simple clipboard management using dmenu
git clone https://git.sinitax.com/cdown/clipmenu
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 6e6c4ed4309847bfcbbc0f086af3e1bb39c5faee
parent e8ebe8b27db8e1c005003846aadd2d2375f00dce
Author: Chris Down <chris@chrisdown.name>
Date:   Wed,  2 Nov 2016 16:55:39 -0600

Fix blank check

lol where da unit tests at

Diffstat:
Mclipmenud | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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