diff options
author | Joe <rbo@gmx.us> | 2024-01-11 17:24:45 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-11 17:24:45 +0100 |
commit | e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46 (patch) | |
tree | 1394a0aa7e36652c690ce178dd7d3f41db868097 /config.h | |
parent | Merge branch 'master' of gitjoe.xyz:dmenu (diff) | |
download | dmenu-e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46.tar.gz dmenu-e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46.tar.bz2 dmenu-e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46.tar.xz dmenu-e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46.tar.zst dmenu-e549ffcdceb5ea73ce5c5bd662345ce0fe4eaa46.zip |
bsdred
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,16 +8,16 @@ 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[] = { - "UbuntuMono Nerd Font:size=15" + "NotoSansMono 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", "#6e0000" }, - [SchemeSelHighlight] = { "#fabd2f", "#6e0000" }, + [SchemeSel] = { "#ebdbb2", "#9d0006" }, + [SchemeSelHighlight] = { "#fabd2f", "#9d0006" }, [SchemeNormHighlight] = { "#fabd2f", "#1d2021" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeOut] = { "#000000", "#9d0006" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 5; |