summaryrefslogtreecommitdiff
path: root/modules/home/dmenu
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-29 10:52:55 -0600
committerChristian <[email protected]>2026-01-29 10:56:46 -0600
commit33864bef97cb6d0e0efdb858db588e252dfee653 (patch)
tree9b36e482b3cffd546e09e4ffc1a3cce6a5137bb8 /modules/home/dmenu
parent9bcc5ed31a94f5ab66fb3400dc39560ee9d29e72 (diff)
dmenu config
Diffstat (limited to 'modules/home/dmenu')
-rw-r--r--modules/home/dmenu/config.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/home/dmenu/config.h b/modules/home/dmenu/config.h
new file mode 100644
index 0000000..9efcb0b
--- /dev/null
+++ b/modules/home/dmenu/config.h
@@ -0,0 +1,17 @@
+static int topbar = 1;
+
+static const char *fonts[] = {
+ "monospace:size=14"
+};
+
+static const char *prompt = NULL;
+
+static const char *colors[SchemeLast][2] = {
+ [SchemeNorm] = { "#bbbbbb", "#222222" },
+ [SchemeSel] = { "#eeeeee", "#005577" },
+ [SchemeOut] = { "#000000", "#00ffff" },
+};
+
+static unsigned int lines = 0;
+
+static const char worddelimiters[] = " ";