Archived
2
0

updated dependencies

This commit is contained in:
mbattista
2021-03-28 19:44:43 +00:00
parent 2b90d42f75
commit b88f1750f7
13 changed files with 84 additions and 35 deletions

View File

@ -170,7 +170,7 @@ void SetKeyboardLayout(char *layout) {
// TOOD: refactor, use native API.
char cmd[13] = "setxkbmap ";
strncat(cmd, layout, 2);
system(cmd);
int r = system(cmd);
}
void SetKeyboardModifiers(int num_lock, int caps_lock, int scroll_lock) {