about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-13 12:38:58 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-13 12:38:58 +0200
commit4e26d5ef5d67777519d0ddd934ac2240a9fc7277 (patch)
tree5e874de56cbe3e496159e4604b90f7c3daed52ac /config.h
parentImproved screenshot script (diff)
downloaddmenu-4e26d5ef5d67777519d0ddd934ac2240a9fc7277.tar.gz
dmenu-4e26d5ef5d67777519d0ddd934ac2240a9fc7277.tar.bz2
dmenu-4e26d5ef5d67777519d0ddd934ac2240a9fc7277.zip
Added opacity patch [Patch]
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h b/config.h
index 11d6688..f4dfe6a 100644
--- a/config.h
+++ b/config.h
@@ -6,6 +6,10 @@ static int topbar = 1;                      /* -b  option; if 0, dmenu appears a
 static const char *fonts[] = {
 	"Noto Sans Display Nerd Font:size=10"
 };
+
+static char *name = "dmenu";
+static char *class = "Dmenu";
+
 static const char *prompt      = NULL;      /* -p  option; prompt to the left of input field */
 
 static const char col_gray1[]       = "#222222";
@@ -16,6 +20,8 @@ static const char col_cyan[]        = "#005577";
 static const char col_black[]       = "#000000";
 static const char col_aqua[]        = "#00ffff";
 
+static double opacity = 1.0;
+
 static const char *colors[SchemeLast][2] = {
 	/*                  fg          bg    */
 	[SchemeNorm] = { col_gray3,  col_gray1},