Do not show double tracking

This commit is contained in:
Rico Tiongson 2019-02-12 21:56:47 +08:00
parent 1c9b497b56
commit c45ceb3da3

View File

@ -31,7 +31,9 @@ namespace comfortable_swipe::service
*/ */
void start() 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\")");
} }
} }