aboutsummaryrefslogtreecommitdiff
path: root/dwm/Repositories/dmenu/config.h
diff options
context:
space:
mode:
authorbard <[email protected]>2024-05-31 16:01:49 -0400
committerbard <[email protected]>2024-05-31 16:01:49 -0400
commit8aa290ce1d935d1206c875f7c2483180cbc42763 (patch)
tree0380849e89ba3237ab05583de96d0950deae880d /dwm/Repositories/dmenu/config.h
parent8f0231d5f45adf980717ea1453a92d05f7093c74 (diff)
move to another repo
Diffstat (limited to 'dwm/Repositories/dmenu/config.h')
-rw-r--r--dwm/Repositories/dmenu/config.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/dwm/Repositories/dmenu/config.h b/dwm/Repositories/dmenu/config.h
deleted file mode 100644
index 7947d42..0000000
--- a/dwm/Repositories/dmenu/config.h
+++ /dev/null
@@ -1,29 +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 */
-static int centered = 1; /* -c option; centers dmenu on screen */
-static int min_width = 1000; /* minimum width when centered */
-/* Size of the window border */
-static unsigned int border_width = 2;
-
-/* -fn option overrides fonts[0]; default X11 font or font set */
-static const char *fonts[] = {
- "Iosevka Comfy:size=16",
- "NotoColorEmoji: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] = { "#ffffff", "#000000" },
- [SchemeSel] = { "#ffffff", "#989898" },
- [SchemeOut] = { "#000000", "#00ffff" },
-};
-/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
-static unsigned int lines = 20;
-
-/*
- * Characters not considered part of a word while deleting words
- * for example: " /?\"&[]"
- */
-static const char worddelimiters[] = " ";