dmenu

My fork of dmenu.
git clone git://git.alex.balgavy.eu/dmenu.git
Log | Files | Refs | README | LICENSE

commit 654505cefa9f127349b33005dbd49d76eaaa331d
parent a9e86539e8525eed5e17ba273ad4b6187cbc79e6
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Fri, 17 Sep 2021 12:05:28 +0200

Use colors from pywal

Diffstat:
Mconfig.h | 10++--------
1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/config.h b/config.h @@ -1,18 +1,12 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ - +#include "/home/alex/.cache/wal/colors-wal-dmenu.h" 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" + "MesloLGS NF:size=10" }; 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" }, - [SchemeOut] = { "#000000", "#00ffff" }, -}; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0;