feat: load/save state from number hotkeys

This commit is contained in:
2025-11-14 11:02:21 +01:00
parent f04fe1f5c1
commit 4ddb5241b4
11 changed files with 265 additions and 199 deletions
+3
View File
@@ -75,9 +75,12 @@ void config_file_read(ConfigFile *config, const char *path) {
file_read(&file, path);
if (file.error) {
config->error = true;
return;
}
config->error = false;
line = strtok_r(file.content, "\n", &rest);
while (line != NULL) {