summaryrefslogtreecommitdiffstats
path: root/x11-misc/dmenu-5.0
diff options
context:
space:
mode:
authorturret <turret@duck.com>2026-01-16 18:33:51 -0600
committerturret <turret@duck.com>2026-01-16 18:33:51 -0600
commitf6e8612c574a1fd349b9df05cc527f6c9a760574 (patch)
treebc1ab0412e1d3301193dea06ca16569f6cf65249 /x11-misc/dmenu-5.0
parentb874d76c7b11e16ee99c555c48806a78c4b993d9 (diff)
downloadportage-savedconfig-f6e8612c574a1fd349b9df05cc527f6c9a760574.tar.gz
portage-savedconfig-f6e8612c574a1fd349b9df05cc527f6c9a760574.tar.bz2
portage-savedconfig-f6e8612c574a1fd349b9df05cc527f6c9a760574.zip
update 2026HEADmaster
Diffstat (limited to 'x11-misc/dmenu-5.0')
-rw-r--r--x11-misc/dmenu-5.023
1 files changed, 0 insertions, 23 deletions
diff --git a/x11-misc/dmenu-5.0 b/x11-misc/dmenu-5.0
deleted file mode 100644
index 1edb647..0000000
--- a/x11-misc/dmenu-5.0
+++ /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[] = " ";