| dmenu-dracula-20211128-d78ff08.diff - sites - public wiki contents of suckless.… | |
| git clone git://git.suckless.org/sites | |
| Log | |
| Files | |
| Refs | |
| --- | |
| dmenu-dracula-20211128-d78ff08.diff (916B) | |
| --- | |
| 1 From f16313b64965d74e6cbb30fa41d53aaf09b9ad49 Mon Sep 17 00:00:00 2001 | |
| 2 From: David Lima <[email protected]> | |
| 3 Date: Sun, 28 Nov 2021 17:02:43 -0300 | |
| 4 Subject: [PATCH] apply dracula theme 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..e688388 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 th… | |
| 16 static const char *colors[SchemeLast][2] = { | |
| 17 /* fg bg */ | |
| 18 - [SchemeNorm] = { "#bbbbbb", "#222222" }, | |
| 19 - [SchemeSel] = { "#eeeeee", "#005577" }, | |
| 20 + [SchemeNorm] = { "#f8f8f2", "#282a36" }, | |
| 21 + [SchemeSel] = { "#f8f8f2", "#6272a4" }, | |
| 22 [SchemeOut] = { "#000000", "#00ffff" }, | |
| 23 }; | |
| 24 /* -l option; if nonzero, dmenu uses vertical list with given number of… | |
| 25 -- | |
| 26 2.34.1 | |
| 27 |