Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
10dcddf14b | |||
bb7a410c90 | |||
0410100872 | |||
ae40e87091 | |||
016e498dc3 | |||
e4122a6e69 | |||
bfd2e7ca71 |
14
config.h
14
config.h
@ -4,16 +4,20 @@
|
||||
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||
static const char *fonts[] = {
|
||||
"BlexMono Nerd Font:size=11:antialias=true",
|
||||
"CaskaydiaCove Nerd Font:size=11:antialias=true",
|
||||
"Noto Sans:size=1:antialias=true",
|
||||
"Noto Color Emoji:size=11:antialias=true",
|
||||
"IpaGothic:size=11:antialias=true",
|
||||
"Symbola:size=11:antialias=true",
|
||||
};
|
||||
static const unsigned int bgalpha = OPAQUE;
|
||||
static const unsigned int fgalpha = OPAQUE;
|
||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||
static const char *colors[SchemeLast][2] = {
|
||||
/* fg bg */
|
||||
[SchemeNorm] = { "#cdd6f4", "#1e1e2e" },
|
||||
[SchemeSel] = { "#1e1e2e", "#89dceb" },
|
||||
[SchemeOut] = { "#000000", "#89dceb" },
|
||||
[SchemeNorm] = { "#c6d0f5", "#303446" },
|
||||
[SchemeSel] = { "#303446", "#99d1db" },
|
||||
[SchemeOut] = { "#000000", "#99d1db" },
|
||||
};
|
||||
static const unsigned int alphas[SchemeLast][2] = {
|
||||
/* fgalpha bgalphga */
|
||||
@ -25,7 +29,7 @@ static const unsigned int alphas[SchemeLast][2] = {
|
||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||
static unsigned int lines = 0;
|
||||
/* -h option; minimum height of a menu line */
|
||||
static unsigned int lineheight = 27;
|
||||
static unsigned int lineheight = 28;
|
||||
static unsigned int min_lineheight = 10;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user