commit 96f0c862e1a50e06b3096890be0274012b5a5b42
parent 1a13d0465d1a6f4f74bc5b07b04c9bd542f20ba6
Author: Harridrone <harrison_k_a@hotmail.com>
Date: Tue, 23 Feb 2021 18:26:51 -0500
Dmenu with my colours
Diffstat:
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/config.h b/config.h
@@ -0,0 +1,23 @@
+/* See LICENSE file for copyright and license details. */
+/* Default settings; can be overriden by command line. */
+
+static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
+/* -fn option overrides fonts[0]; default X11 font or font set */
+static const char *fonts[] = {
+ "Nouveau IBM:size=12"
+};
+static const char *prompt = NULL; /* -p option; prompt to the left of input field */
+static const char *colors[SchemeLast][2] = {
+ /* fg bg */
+ [SchemeNorm] = { "#ffffff", "#114488" },
+ [SchemeSel] = { "#ffffff", "#114488" },
+ [SchemeOut] = { "#114488", "#ffffff" },
+};
+/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
+static unsigned int lines = 0;
+
+/*
+ * Characters not considered part of a word while deleting words
+ * for example: " /?\"&[]"
+ */
+static const char worddelimiters[] = " ";