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\")"); } }