From 23a62d70129db30027ba620fc798a666c198ba35 Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Fri, 16 Aug 2024 12:30:33 +0200 Subject: update --- dmenu/config.h | 2 +- dmenu/dmenu | Bin 43088 -> 43088 bytes dmenu/dmenu.o | Bin 33664 -> 33696 bytes dmenu/themes/cicada.h | 4 ++-- dmenu/themes/rurbania.h | 14 ++++++++++++++ 5 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 dmenu/themes/rurbania.h (limited to 'dmenu') diff --git a/dmenu/config.h b/dmenu/config.h index 1655574..d82693d 100755 --- a/dmenu/config.h +++ b/dmenu/config.h @@ -1,6 +1,6 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -#include "themes/cicada.h" +#include "themes/rurbania.h" static const unsigned int border_width = 2; diff --git a/dmenu/dmenu b/dmenu/dmenu index ca3a574..77928a5 100755 Binary files a/dmenu/dmenu and b/dmenu/dmenu differ diff --git a/dmenu/dmenu.o b/dmenu/dmenu.o index 8f869d0..9c61bf1 100644 Binary files a/dmenu/dmenu.o and b/dmenu/dmenu.o differ diff --git a/dmenu/themes/cicada.h b/dmenu/themes/cicada.h index c08fee7..de0caff 100644 --- a/dmenu/themes/cicada.h +++ b/dmenu/themes/cicada.h @@ -1,8 +1,8 @@ static const char *colors[SchemeLast][2] = { /* fg bg */ [SchemeNorm] = { "#bbbbbb", "#0c0c0c" }, - [SchemeSel] = { "#eeeeee", "#880" }, - [SchemeOut] = { "#000000", "#880" }, + [SchemeSel] = { "#eeeeee", "#888" }, + [SchemeOut] = { "#000000", "#888" }, }; //static const unsigned int alpha = 0xf9; static const unsigned int alpha = 0xff; diff --git a/dmenu/themes/rurbania.h b/dmenu/themes/rurbania.h new file mode 100644 index 0000000..330e314 --- /dev/null +++ b/dmenu/themes/rurbania.h @@ -0,0 +1,14 @@ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#111111" }, + [SchemeSel] = { "#eeeeee", "#aa0000" }, + [SchemeOut] = { "#000000", "#aa0000" }, +}; +//static const unsigned int alpha = 0xf9; +static const unsigned int alpha = 0xff; + +static const unsigned int alphas[SchemeLast][2] = { + [SchemeNorm] = { OPAQUE, alpha }, + [SchemeSel] = { OPAQUE, alpha }, + [SchemeOut] = { OPAQUE, alpha }, +}; -- cgit v1.2.3