aboutsummaryrefslogtreecommitdiff
path: root/misc/custom dmenu build/config.def.h
diff options
context:
space:
mode:
authorBlista Kanjo2022-09-01 20:03:35 -0400
committerBlista Kanjo2022-09-01 20:03:35 -0400
commita208eadd1289461bab82dd9554a2316898e7d23d (patch)
treedc52940c6271490f2df6bd58f4edf9ec16f7b7df /misc/custom dmenu build/config.def.h
parent77051c67db148b81aadaa562dbbbfff9e5f69bef (diff)
refactor: organized the entire repo | feat: added pomodoro aliases inspired by bashbunni
Diffstat (limited to 'misc/custom dmenu build/config.def.h')
-rw-r--r--misc/custom dmenu build/config.def.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/misc/custom dmenu build/config.def.h b/misc/custom dmenu build/config.def.h
new file mode 100644
index 0000000..9b74712
--- /dev/null
+++ b/misc/custom dmenu build/config.def.h
@@ -0,0 +1,24 @@
+/* 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[] = {
+ "JetBrains Mono:size=11",
+ "Noto Color Emoji:size=11"
+};
+static const char *prompt = NULL; /* -p option; prompt to the left of input field */
+static const char *colors[SchemeLast][2] = {
+ /* fg bg */
+ [SchemeNorm] = { "#bbbbbb", "#303030" },
+ [SchemeSel] = { "#eeeeee", "#11427E" },
+ [SchemeOut] = { "#000000", "#00ffff" },
+};
+/* -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[] = " ";