diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-22 12:25:10 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-22 12:25:10 +0200 |
commit | e4fc198cfb790e0097d110084f92294ba1083996 (patch) | |
tree | 6b27629b68dda93e15bcd026d40fe57d1d00b6ee | |
parent | color update (diff) | |
download | dmenu-e4fc198cfb790e0097d110084f92294ba1083996.tar.gz dmenu-e4fc198cfb790e0097d110084f92294ba1083996.tar.bz2 dmenu-e4fc198cfb790e0097d110084f92294ba1083996.tar.xz dmenu-e4fc198cfb790e0097d110084f92294ba1083996.tar.zst dmenu-e4fc198cfb790e0097d110084f92294ba1083996.zip |
update
-rw-r--r-- | config.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,14 +8,15 @@ static int centered = 1; /* -c option; centers dmenu on scree static int min_width = 500; /* minimum width when centered */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "mononoki Nerd Font:size=14" + /* "mononoki Nerd Font:size=14" */ + "Mx437 AT&T PC6300:size=17" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ [SchemeNorm] = { "#ebdbb2", "#1d2021" }, - [SchemeSel] = { "#ebdbb2", "#990000" }, - [SchemeSelHighlight] = { "#fabd2f", "#990000" }, + [SchemeSel] = { "#ebdbb2", "#6e0000" }, + [SchemeSelHighlight] = { "#fabd2f", "#6e0000" }, [SchemeNormHighlight] = { "#fabd2f", "#1d2021" }, [SchemeOut] = { "#000000", "#00ffff" }, }; |