mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 11:00:27 +10:00
Adding new dmenu build with lots of patching!
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||
static int centered = 0; /* -c option; centers dmenu on screen */
|
||||
static int min_width = 500; /* minimum width when centered */
|
||||
static int min_width = 600; /* minimum width when centered */
|
||||
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||
static const char *fonts[] = {
|
||||
"Mononoki Nerd Font:size=10"
|
||||
@@ -16,6 +16,7 @@ static const char *colors[SchemeLast][2] = {
|
||||
[SchemeSelHighlight] = { "#82aaff", "#000000" },
|
||||
[SchemeNormHighlight] = { "#f1fa8c", "#000000" },
|
||||
[SchemeOut] = { "#000000", "#00ffff" },
|
||||
[SchemeMid] = { "#eeeeee", "#770000" },
|
||||
};
|
||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||
static unsigned int lines = 0;
|
||||
@@ -28,4 +29,4 @@ static unsigned int lineheight = 22; /* -h option; minimum height of a m
|
||||
static const char worddelimiters[] = " ";
|
||||
|
||||
/* Size of the window border */
|
||||
static const unsigned int border_width = 0;
|
||||
static unsigned int border_width = 1;
|
||||
|
||||
Reference in New Issue
Block a user