nyx: Add theme colors for highlight text

This commit is contained in:
CTCaer
2020-04-30 04:04:24 +03:00
parent f540c8250b
commit 523c81f797
5 changed files with 44 additions and 18 deletions

View File

@@ -262,7 +262,9 @@ void load_saved_configuration()
{
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ini_sec->kvs, link)
{
if (!strcmp("verification", kv->key))
if (!strcmp("themecolor", kv->key))
n_cfg.themecolor = atoi(kv->val);
else if (!strcmp("verification", kv->key))
n_cfg.verification = atoi(kv->val);
}