No need to call setup() multiple times
This commit is contained in:
parent
8bff8140e7
commit
b9938cb25f
1 changed files with 6 additions and 1 deletions
7
dwm.c
7
dwm.c
|
@ -2592,7 +2592,12 @@ void
|
|||
xrdb(const Arg *arg)
|
||||
{
|
||||
load_xresources();
|
||||
setup();
|
||||
|
||||
for (int i = 0; i < LENGTH(colors); i++)
|
||||
scheme[i] = drw_scm_create(drw, colors[i], 3);
|
||||
|
||||
focus(NULL);
|
||||
arrange(NULL);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue