You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.6 KiB

  1. /* See LICENSE file for copyright and license details. */
  2. /* Default settings; can be overriden by command line. */
  3. static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
  4. static int centered = 1; /* -c option; centers dmenu on screen */
  5. static int min_width = 500; /* minimum width when centered */
  6. static const float menu_height_ratio = 4.0f; /* This is the ratio used in the original calculation */
  7. /* -fn option overrides fonts[0]; default X11 font or font set */
  8. static const char *fonts[] = {
  9. "monospace:size=10"
  10. };
  11. static const char *prompt = NULL; /* -p option; prompt to the left of input field */
  12. static const char *colors[SchemeLast][2] = {
  13. /* fg bg */
  14. [SchemeNorm] = { "#bbbbbb", "#222222" },
  15. [SchemeSel] = { "#eeeeee", "#005577" },
  16. [SchemeOut] = { "#000000", "#00ffff" },
  17. [SchemeCursor] = { "#222222", "#bbbbbb"},
  18. };
  19. /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
  20. static unsigned int lines = 10;
  21. /*
  22. * Characters not considered part of a word while deleting words
  23. * for example: " /?\"&[]"
  24. */
  25. static const char worddelimiters[] = " ";
  26. /*
  27. * -vi option; if nonzero, vi mode is always enabled and can be
  28. * accessed with the global_esc keysym + mod mask
  29. */
  30. static unsigned int vi_mode = 1;
  31. static unsigned int start_mode = 0; /* mode to use when -vi is passed. 0 = insert mode, 1 = normal mode */
  32. static Key global_esc = { XK_Escape }; /* escape key when vi mode is not enabled explicitly */
  33. static Key quit_keys[] = {
  34. /* keysym modifier */
  35. { XK_Escape, 0 }
  36. };