Code formatting + st refactoring.

This commit is contained in:
Bartek Stalewski 2022-06-12 11:58:28 +02:00
parent b5878fc205
commit e15f7fb669
28 changed files with 5853 additions and 6321 deletions

View file

@ -11,10 +11,10 @@ static const char *fonts[] = {
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#f8f8f2", "#272822" },
[SchemeSel] = { "#ffffff", "#005577" },
[SchemeOut] = { "#000000", "#005577" },
/* fg bg */
[SchemeNorm] = { "#f8f8f2", "#272822" },
[SchemeSel] = { "#ffffff", "#005577" },
[SchemeOut] = { "#000000", "#005577" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;