Update repository URL and remove assumptions of the keycodes patch in obsolete example

Yves Zoundi 2023-02-15 18:28:11 +00:00
parent 44e6f0a73f
commit e3ac6b1ce8

@ -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