diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-08-16 12:30:33 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-08-16 12:30:33 +0200 |
commit | 23a62d70129db30027ba620fc798a666c198ba35 (patch) | |
tree | 51b59657991b10665936e33bb7fcee3873f371ef /dmenu | |
parent | 37d4a19152bbb2a83f4c0ce7172388240252d8f1 (diff) |
update
Diffstat (limited to 'dmenu')
-rwxr-xr-x | dmenu/config.h | 2 | ||||
-rwxr-xr-x | dmenu/dmenu | bin | 43088 -> 43088 bytes | |||
-rw-r--r-- | dmenu/dmenu.o | bin | 33664 -> 33696 bytes | |||
-rw-r--r-- | dmenu/themes/cicada.h | 4 | ||||
-rw-r--r-- | dmenu/themes/rurbania.h | 14 |
5 files changed, 17 insertions, 3 deletions
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 Binary files differindex ca3a574..77928a5 100755 --- a/dmenu/dmenu +++ b/dmenu/dmenu diff --git a/dmenu/dmenu.o b/dmenu/dmenu.o Binary files differindex 8f869d0..9c61bf1 100644 --- a/dmenu/dmenu.o +++ b/dmenu/dmenu.o 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 }, +}; |