summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2024-08-05 18:12:48 +0400
committerSuleyman Farajli <suleyman@farajli.net>2024-08-05 18:12:48 +0400
commit1e67f7a3d9dfbce101951c2d42102d59e9f92375 (patch)
treea69c8ec66d393bcbb0a3befe74002f98b8bb8891 /config.h
parent00de4af7a3a04646d846c934f72fe423405c6169 (diff)
grid patched
Diffstat (limited to 'config.h')
-rw-r--r--config.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/config.h b/config.h
deleted file mode 100644
index 1edb647..0000000
--- a/config.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* 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[] = {
- "monospace:size=10"
-};
-static const char *prompt = NULL; /* -p option; prompt to the left of input field */
-static const char *colors[SchemeLast][2] = {
- /* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
- [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[] = " ";