You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
917 B
Diff
29 lines
917 B
Diff
1 year ago
|
From f16313b64965d74e6cbb30fa41d53aaf09b9ad49 Mon Sep 17 00:00:00 2001
|
||
|
From: David Lima <antdavidlima@gmail.com>
|
||
|
Date: Sun, 28 Nov 2021 17:02:43 -0300
|
||
|
Subject: [PATCH] apply dracula theme to dmenu
|
||
|
|
||
|
---
|
||
|
config.def.h | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/config.def.h b/config.def.h
|
||
|
index 1edb647..e688388 100644
|
||
|
--- a/config.def.h
|
||
|
+++ b/config.def.h
|
||
|
@@ -9,8 +9,8 @@ static const char *fonts[] = {
|
||
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||
|
static const char *colors[SchemeLast][2] = {
|
||
|
/* fg bg */
|
||
|
- [SchemeNorm] = { "#bbbbbb", "#222222" },
|
||
|
- [SchemeSel] = { "#eeeeee", "#005577" },
|
||
|
+ [SchemeNorm] = { "#f8f8f2", "#282a36" },
|
||
|
+ [SchemeSel] = { "#f8f8f2", "#6272a4" },
|
||
|
[SchemeOut] = { "#000000", "#00ffff" },
|
||
|
};
|
||
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||
|
--
|
||
|
2.34.1
|
||
|
|
||
|
|