Compare commits

...

7 Commits
4.6 ... main

Author SHA1 Message Date
10dcddf14b Testing for kde. 2024-02-12 08:59:19 +01:00
bb7a410c90 Testing for kde. 2024-02-12 08:56:42 +01:00
0410100872 New monitor, new height. 2024-01-04 19:12:33 +01:00
ae40e87091 Fix font's. 2024-01-02 21:44:24 +01:00
016e498dc3 Update font 2023-11-16 19:58:15 +01:00
e4122a6e69 Update font 2023-04-30 16:59:10 +02:00
bfd2e7ca71 Update colors. 2023-02-05 18:01:14 +01:00

View File

@ -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;
/*