summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorBossCode45 <human.cyborg42@gmail.com>2023-06-28 21:24:59 +1200
committerBossCode45 <human.cyborg42@gmail.com>2023-06-28 21:24:59 +1200
commit37a2725da41e363fcdca12d0374b192cd03905d0 (patch)
treee2eaa5e14171987e7e06fca21b3d6d9253e80165 /main.cpp
parent638c3ac10003f66ef4af43f50ee365c9036da0fe (diff)
downloadYATwm-37a2725da41e363fcdca12d0374b192cd03905d0.tar.gz
YATwm-37a2725da41e363fcdca12d0374b192cd03905d0.zip
feat: Added key chording
Probably a hacky mess but oh well. Key chords can be done by seperating binds in string with ` `. You can set the quit bind with `quitkey`, default mod+g. (Chords also exited when pressing unbound keys).
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index f6cc6e8..cc3d2bb 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1117,7 +1117,7 @@ int main(int argc, char** argv)
clientMessage(e.xclient);
break;
default:
- //cout << "Unhandled event, code: " << evNames[e.type] << "!\n";
+ // cout << "Unhandled event: " << getEventName(e.type) << endl;
break;
}
}