From e3ac6b1ce8b274aa214dbefc194745e5f54bbc96 Mon Sep 17 00:00:00 2001 From: Yves Zoundi Date: Wed, 15 Feb 2023 18:28:11 +0000 Subject: [PATCH] Update repository URL and remove assumptions of the keycodes patch in obsolete example --- keychord.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keychord.md b/keychord.md index 2bce898..f246eb3 100644 --- a/keychord.md +++ b/keychord.md @@ -14,13 +14,13 @@ In the example below, the menu command is bound to the sequence `Control-t Contr static const Keychord keychords[] = { /* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */ /* count key_sequences function argument */ - { 2, {{MODKEY, PREFIXKEY}, {MOD_CONTROL, Key_o}}, spawn, { .v = menucmd } } + { 2, {{MODKEY, PREFIXKEY}, {MOD_CONTROL, XKB_KEY_o}}, spawn, { .v = menucmd } } }; ``` ### Download -- [2023-02-14](https://github.com/djpohly/dwl/compare/main...yveszoundi:dwl:v0.4-keychord-2023-02-14.patch) +- [2023-02-15](https://github.com/djpohly/dwl/compare/main...yveszoundi:dwl-customization:v0.4-keychord-2023-02-15.patch) ### Authors