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 */
|
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||||
/* -fn option overrides fonts[0]; default X11 font or font set */
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||||
static const char *fonts[] = {
|
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 bgalpha = OPAQUE;
|
||||||
static const unsigned int fgalpha = OPAQUE;
|
static const unsigned int fgalpha = OPAQUE;
|
||||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
static const char *colors[SchemeLast][2] = {
|
static const char *colors[SchemeLast][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = { "#cdd6f4", "#1e1e2e" },
|
[SchemeNorm] = { "#c6d0f5", "#303446" },
|
||||||
[SchemeSel] = { "#1e1e2e", "#89dceb" },
|
[SchemeSel] = { "#303446", "#99d1db" },
|
||||||
[SchemeOut] = { "#000000", "#89dceb" },
|
[SchemeOut] = { "#000000", "#99d1db" },
|
||||||
};
|
};
|
||||||
static const unsigned int alphas[SchemeLast][2] = {
|
static const unsigned int alphas[SchemeLast][2] = {
|
||||||
/* fgalpha bgalphga */
|
/* 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 */
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||||
static unsigned int lines = 0;
|
static unsigned int lines = 0;
|
||||||
/* -h option; minimum height of a menu line */
|
/* -h option; minimum height of a menu line */
|
||||||
static unsigned int lineheight = 27;
|
static unsigned int lineheight = 28;
|
||||||
static unsigned int min_lineheight = 10;
|
static unsigned int min_lineheight = 10;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user