sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 24ac739b76b923b454e1bbf91bf98445aad0bd55
parent 90ba261b74fc55ee8add07d11cb071feeb437939
Author: David Lima <antdavidlima@gmail.com>
Date:   Sun, 28 Nov 2021 18:04:14 -0300

[dmenu][patches][dracula] Add dracula color scheme

Diffstat:
Atools.suckless.org/dmenu/patches/dracula/dmenu-dracula-20211128-d78ff08.diff | 27+++++++++++++++++++++++++++
Atools.suckless.org/dmenu/patches/dracula/index.md | 15+++++++++++++++
2 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/tools.suckless.org/dmenu/patches/dracula/dmenu-dracula-20211128-d78ff08.diff b/tools.suckless.org/dmenu/patches/dracula/dmenu-dracula-20211128-d78ff08.diff @@ -0,0 +1,27 @@ +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 + diff --git a/tools.suckless.org/dmenu/patches/dracula/index.md b/tools.suckless.org/dmenu/patches/dracula/index.md @@ -0,0 +1,15 @@ +dracula +========= + +Description +----------- + +This provides patches to apply the [dracula colour scheme](https://draculatheme.com/) to dmenu. + +Download +-------- +* [dmenu-dracula-20211128-d78ff08.diff](dmenu-dracula-20211128-d78ff08.diff) + +Author +------ +* [David Lima](https://github.com/AntDavidLima) (hXtreme)<antdavidlima@gmail.com>