From c45ceb3da32907c7829684bf3799d3e449c47af6 Mon Sep 17 00:00:00 2001 From: Rico Tiongson Date: Tue, 12 Feb 2019 21:56:47 +0800 Subject: [PATCH] Do not show double tracking --- lib/service/start.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/service/start.cpp b/lib/service/start.cpp index f20c9a6..011dee0 100644 --- a/lib/service/start.cpp +++ b/lib/service/start.cpp @@ -31,7 +31,9 @@ namespace comfortable_swipe::service */ void start() { - (void) std::system("stdbuf -oL -e0 libinput debug-events | " __COMFORTABLE_SWIPE__PROGRAM__ " buffer"); + (void) std::system("stdbuf -oL -e0 libinput debug-events | " __COMFORTABLE_SWIPE__PROGRAM__ " buffer " + // dont show double tracking bugs from libinput + "2> >(grep -v \"double tracking\")"); } }