Skip to content

Commit

Permalink
fix: remove unused text color
Browse files Browse the repository at this point in the history
  • Loading branch information
Frewacom committed Dec 19, 2022
1 parent 33db62c commit 71c0acb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions dscm-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ static int smartborders = 0;
static float *rootcolor = NULL;
static float *bordercolor = NULL;
static float *focuscolor = NULL;
static float *textcolor = NULL;
static float *fullscreen_bg = NULL;
static char **tags = NULL;
static char **termcmd = NULL;
Expand Down Expand Up @@ -187,8 +186,6 @@ dscm_config_parse()
sizeof(float), 0, &dscm_parse_color, NULL);
focuscolor = dscm_iterate_list(dscm_alist_get(colors, "focus"),
sizeof(float), 0, &dscm_parse_color, NULL);
textcolor = dscm_iterate_list(dscm_alist_get(colors, "text"),
sizeof(float), 0, &dscm_parse_color, NULL);
fullscreen_bg = dscm_iterate_list(dscm_alist_get(colors, "fullscreen"),
sizeof(float), 0, &dscm_parse_color, NULL);
tags = dscm_iterate_list(dscm_alist_get(config, "tags"),
Expand Down Expand Up @@ -234,7 +231,6 @@ dscm_config_cleanup()
free(rootcolor);
free(bordercolor);
free(focuscolor);
free(textcolor);
free(fullscreen_bg);
free((char*)xkb_rules->rules);
free((char*)xkb_rules->model);
Expand Down

0 comments on commit 71c0acb

Please sign in to comment.