diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-13 12:42:50 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-13 12:42:50 +0200 |
commit | 3f7f26d554183575a85e46fb2d34532005610d0e (patch) | |
tree | fa3a358b5bc3b6155ef40a7d3c00e2f1e8d93d64 | |
parent | Added opacity patch [Patch] (diff) | |
download | dmenu-3f7f26d554183575a85e46fb2d34532005610d0e.tar.gz dmenu-3f7f26d554183575a85e46fb2d34532005610d0e.tar.bz2 dmenu-3f7f26d554183575a85e46fb2d34532005610d0e.zip |
Added more descriptions in the config.h
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h index f4dfe6a..7e7ab67 100644 --- a/config.h +++ b/config.h @@ -7,8 +7,8 @@ static const char *fonts[] = { "Noto Sans Display Nerd Font:size=10" }; -static char *name = "dmenu"; -static char *class = "Dmenu"; +static char *name = "dmenu"; /* -n option; */ +static char *class = "Dmenu"; /* -c option; */ static const char *prompt = NULL; /* -p option; prompt to the left of input field */ @@ -20,7 +20,7 @@ static const char col_cyan[] = "#005577"; static const char col_black[] = "#000000"; static const char col_aqua[] = "#00ffff"; -static double opacity = 1.0; +static double opacity = 1.0; /* -o option; 0 being transparent and 1 being opaque */ static const char *colors[SchemeLast][2] = { /* fg bg */ |