From 33ac04112170d442c6b67f8e871d9fe2ba723f05 Mon Sep 17 00:00:00 2001 From: tommy Date: Sun, 20 Oct 2024 02:56:38 -0400 Subject: [PATCH] Auto-press "BackSlash" when releasing space (get ready for shakes) --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 81890fe..411b20b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -37,6 +37,7 @@ fn main() { return Some(event); } else { send(EventType::ButtonRelease(rdev::Button::Left)); + send(EventType::KeyPress(rdev::Key::BackSlash)); matched = true; } },