diff options
author | Joe <rbo@gmx.us> | 2024-12-24 22:42:09 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-24 22:42:09 +0100 |
commit | 1abae801f09e0168fbd619e68ae3c567f251cdc5 (patch) | |
tree | 8a64f4ece2a83934f657a0a4abeca421557e3e1d /config.h | |
parent | bsdred (diff) | |
download | dmenu-1abae801f09e0168fbd619e68ae3c567f251cdc5.tar.gz dmenu-1abae801f09e0168fbd619e68ae3c567f251cdc5.tar.bz2 dmenu-1abae801f09e0168fbd619e68ae3c567f251cdc5.tar.xz dmenu-1abae801f09e0168fbd619e68ae3c567f251cdc5.tar.zst dmenu-1abae801f09e0168fbd619e68ae3c567f251cdc5.zip |
up
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -8,16 +8,17 @@ 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[] = { - "NotoSansMono Nerd Font:size=15" + "Terminess Nerd Font:style=Bold:size=15" + // "UbuntuMono Nerd Font:size=15" }; 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", "#9d0006" }, - [SchemeSelHighlight] = { "#fabd2f", "#9d0006" }, + [SchemeSel] = { "#ebdbb2", "#900000" }, + [SchemeSelHighlight] = { "#fabd2f", "#900000" }, [SchemeNormHighlight] = { "#fabd2f", "#1d2021" }, - [SchemeOut] = { "#000000", "#9d0006" }, + [SchemeOut] = { "#000000", "#900000" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 5; |