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.

119 lines
3.6 KiB

  1. From 36c3d68f185f47cbb754569775b7888728be4711 Mon Sep 17 00:00:00 2001
  2. From: elbachir-one <bachiralfa@gmail.com>
  3. Date: Sun, 16 Jun 2024 21:28:41 +0100
  4. Subject: [PATCH] Adding an option to change the height as well
  5. ---
  6. config.def.h | 3 +++
  7. dmenu.1 | 3 +++
  8. dmenu.c | 38 ++++++++++++++++++++++++++++++++------
  9. 3 files changed, 38 insertions(+), 6 deletions(-)
  10. diff --git a/config.def.h b/config.def.h
  11. index 1edb647..832896f 100644
  12. --- a/config.def.h
  13. +++ b/config.def.h
  14. @@ -2,6 +2,9 @@
  15. /* Default settings; can be overriden by command line. */
  16. static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
  17. +static int centered = 1; /* -c option; centers dmenu on screen */
  18. +static int min_width = 500; /* minimum width when centered */
  19. +static const float menu_height_ratio = 4.0f; /* This is the ratio used in the original calculation */
  20. /* -fn option overrides fonts[0]; default X11 font or font set */
  21. static const char *fonts[] = {
  22. "monospace:size=10"
  23. diff --git a/dmenu.1 b/dmenu.1
  24. index 323f93c..c036baa 100644
  25. --- a/dmenu.1
  26. +++ b/dmenu.1
  27. @@ -40,6 +40,9 @@ which lists programs in the user's $PATH and runs the result in their $SHELL.
  28. .B \-b
  29. dmenu appears at the bottom of the screen.
  30. .TP
  31. +.B \-c
  32. +dmenu appears centered on the screen.
  33. +.TP
  34. .B \-f
  35. dmenu grabs the keyboard before reading stdin if not reading from a tty. This
  36. is faster, but will lock up X until stdin reaches end\-of\-file.
  37. diff --git a/dmenu.c b/dmenu.c
  38. index 40f93e0..32d6a9d 100644
  39. --- a/dmenu.c
  40. +++ b/dmenu.c
  41. @@ -95,6 +95,15 @@ calcoffsets(void)
  42. break;
  43. }
  44. +static int
  45. +max_textw(void)
  46. +{
  47. + int len = 0;
  48. + for (struct item *item = items; item && item->text; item++)
  49. + len = MAX(TEXTW(item->text), len);
  50. + return len;
  51. +}
  52. +
  53. static void
  54. cleanup(void)
  55. {
  56. @@ -636,6 +645,7 @@ setup(void)
  57. bh = drw->fonts->h + 2;
  58. lines = MAX(lines, 0);
  59. mh = (lines + 1) * bh;
  60. + promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
  61. #ifdef XINERAMA
  62. i = 0;
  63. if (parentwin == root && (info = XineramaQueryScreens(dpy, &n))) {
  64. @@ -662,9 +672,16 @@ setup(void)
  65. if (INTERSECT(x, y, 1, 1, info[i]) != 0)
  66. break;
  67. - x = info[i].x_org;
  68. - y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
  69. - mw = info[i].width;
  70. + if (centered) {
  71. + mw = MIN(MAX(max_textw() + promptw, min_width), info[i].width);
  72. + x = info[i].x_org + ((info[i].width - mw) / 2);
  73. + y = info[i].y_org + ((info[i].height - mh) / menu_height_ratio);
  74. + } else {
  75. + x = info[i].x_org;
  76. + y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
  77. + mw = info[i].width;
  78. + }
  79. +
  80. XFree(info);
  81. } else
  82. #endif
  83. @@ -672,9 +689,16 @@ setup(void)
  84. if (!XGetWindowAttributes(dpy, parentwin, &wa))
  85. die("could not get embedding window attributes: 0x%lx",
  86. parentwin);
  87. - x = 0;
  88. - y = topbar ? 0 : wa.height - mh;
  89. - mw = wa.width;
  90. +
  91. + if (centered) {
  92. + mw = MIN(MAX(max_textw() + promptw, min_width), wa.width);
  93. + x = (wa.width - mw) / 2;
  94. + y = (wa.height - mh) / 2;
  95. + } else {
  96. + x = 0;
  97. + y = topbar ? 0 : wa.height - mh;
  98. + mw = wa.width;
  99. + }
  100. }
  101. promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
  102. inputw = mw / 3; /* input width: ~33% of monitor width */
  103. @@ -734,6 +758,8 @@ main(int argc, char *argv[])
  104. topbar = 0;
  105. else if (!strcmp(argv[i], "-f")) /* grabs keyboard before reading stdin */
  106. fast = 1;
  107. + else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */
  108. + centered = 1;
  109. else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching */
  110. fstrncmp = strncasecmp;
  111. fstrstr = cistrstr;
  112. --
  113. 2.45.2