Use standard settings from dmenu
This commit is contained in:
parent
47d89812c2
commit
46c871b744
1 changed files with 8 additions and 6 deletions
14
config.h
14
config.h
|
@ -4,11 +4,13 @@
|
|||
static int topbar = 1;
|
||||
static int minpwlen = 32;
|
||||
static const char *fonts[] = {
|
||||
"Noto Sans UI:size=13" // "monospace:size=10"
|
||||
"monospace:size=10"
|
||||
};
|
||||
static const char *prompt = "🔑"; //NULL;
|
||||
static const char *asterisk = "● "; //"*";
|
||||
static const char *colors[SchemeLast][2] = {
|
||||
[SchemeNorm] = { "#ffffff", "#000000" }, // "#bbbbbb", "#222222" },
|
||||
[SchemeSel] = { "#eeeeee", "#d9904a" } // "#eeeeee", "#005577" }
|
||||
static const char *prompt = NULL;
|
||||
static const char *asterisk = "*";
|
||||
static const char *colors[SchemeLast][4] = {
|
||||
[SchemePrompt] = { "#bbbbbb", "#222222" },
|
||||
[SchemeNormal] = { "#bbbbbb", "#222222" },
|
||||
[SchemeSelect] = { "#eeeeee", "#005577" },
|
||||
[SchemeDesc] = { "#bbbbbb", "#222222" }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue