summaryrefslogtreecommitdiff
path: root/components/keymap.c
Commit message (Collapse)AuthorAgeFilesLines
* keymap: Variable "layout" should be constplanet362022-12-191-2/+3
| | | | Signed-off-by: drkhsh <me@drkhsh.at>
* radical re-formatting 2/3: Fix blocksdrkhsh2022-10-281-6/+3
| | | | | | Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/
* radical re-formatting 0/3: Alphabetic headersdrkhsh2022-10-281-1/+1
| | | | | | | | Except stated otherwise in comment. Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/
* do not rely on obsolete featureNRK2022-10-261-1/+1
| | | | | | | | | | function prototype with unspecified argument is obsolete since c99. additionally some of these function which don't take any argument were being called with a `const char *` arg, which is UB. fix both these issues by declararing ALL the components to accept a `const char *`, and name the arg "unused" if it's meant to be ignored.
* components/*.c: include slstatus.hNRK2022-10-261-0/+1
| | | | | this gives the compiler a chance to check weather the prototype and definiton matches or not, which would catch issues like 3c47701.
* Refactor keymap.cLaslo Hunhold2018-05-231-56/+45
| | | | | | | | | | | | | - Get rid of camel-casing - Don't use all-caps for variable names - use LEN()-macro - use strncmp() rather than strstr() for prefix-checking - clean up the tokenizer-loop and don't use copies - make the loop more readable by separating different breaking conditions - stricter error-checking and cleanup - store the layout directly with bprintf rather than having a separate buffer
* keymap: Add braces for for loopAaron Marcher2018-05-231-1/+2
|
* Add keymap componentMichael Buch2018-05-231-0/+97
Adding a new keymap component that will indicate the current keyboard layout (language) and variant if any was set. I use the standard X11 XKB APIs to retrieve and parse the xkb_symbols set with setxkbmap.