dmenu-solarized-dark-5.0.diff - sites - public wiki contents of suckless.org
(HTM) git clone git://git.suckless.org/sites
(DIR) Log
(DIR) Files
(DIR) Refs
---
dmenu-solarized-dark-5.0.diff (935B)
---
1 From 3e7637b1b02e58d0fe09bf00c4e834f081d3ea16 Mon Sep 17 00:00:00 2001
2 From: Harsh Parekh <harsh_parekh@outlook.com>
3 Date: Mon, 21 Sep 2020 19:26:44 -0400
4 Subject: [PATCH] Apply solarized dark colour scheme to dmenu.
5
6 ---
7 config.def.h | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
9
10 diff --git a/config.def.h b/config.def.h
11 index 1edb647..2cd3e44 100644
12 --- a/config.def.h
13 +++ b/config.def.h
14 @@ -9,8 +9,8 @@ static const char *fonts[] = {
15 static const char *prompt = NULL; /* -p option; prompt to the left of input field */
16 static const char *colors[SchemeLast][2] = {
17 /* fg bg */
18 - [SchemeNorm] = { "#bbbbbb", "#222222" },
19 - [SchemeSel] = { "#eeeeee", "#005577" },
20 + [SchemeNorm] = { "#839496", "#002b36" },
21 + [SchemeSel] = { "#839496", "#073642"},
22 [SchemeOut] = { "#000000", "#00ffff" },
23 };
24 /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
25 --
26 2.28.0
27