Add overlay for dmenu

Configure my own color scheme.
This commit is contained in:
Daniel Siepmann 2022-01-31 12:02:07 +01:00
commit 29d43dceba
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,7 @@
self: super: {
dmenu = super.dmenu.overrideAttrs( oa: {
patches = [
./settings.patch
];
});
}

View file

@ -0,0 +1,19 @@
--- a/config.def.h
+++ b/config.def.h
@@ -4,13 +4,13 @@
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[] = {
- "monospace:size=10"
+ "Monospace-12:bold"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
+ [SchemeNorm] = { "#D3D7CF", "#2E3436" },
+ [SchemeSel] = { "#F7F7F7", "#218693" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */