dotfiles

[void/arch] linux dotfiles
git clone git://git.mdnr.space/dotfiles
Log | Files | Refs

commit d14e3195aa4004f93d6b0b4ed889743a2ee9078e
parent e95f4066937e99a15c0d5511217a72e456320841
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date:   Sun, 17 Nov 2024 12:41:16 +0330

dmenu: centered, single-line, wider

Diffstat:
Msuckless/.local/src/dmenu/config.h | 10+++++++---
Msuckless/.local/src/dmenu/dmenu.1 | 3+++
Msuckless/.local/src/dmenu/dmenu.c | 41++++++++++++++++++++++++++++++++++-------
3 files changed, 44 insertions(+), 10 deletions(-)

diff --git a/suckless/.local/src/dmenu/config.h b/suckless/.local/src/dmenu/config.h @@ -2,6 +2,9 @@ /* 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 = 500; /* minimum width when centered */ +static const float menu_height_ratio = 2.0f; /* This is the ratio used in the original calculation */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { "JetBrainsMono-Regular:size=8", @@ -12,9 +15,10 @@ static const unsigned int fgalpha = OPAQUE; 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" }, + [SchemeNorm] = { "#eeeeee", "#222e2e" }, + [SchemeSel] = { "#ffffff", "#22212e" }, + [SchemeOut] = { "#eeeeee", "#222e2e" }, + // [SchemeOut] = { "#000000", "#00ffff" }, }; static const unsigned int alphas[SchemeLast][2] = { /* fgalpha bgalphga */ diff --git a/suckless/.local/src/dmenu/dmenu.1 b/suckless/.local/src/dmenu/dmenu.1 @@ -40,6 +40,9 @@ which lists programs in the user's $PATH and runs the result in their $SHELL. .B \-b dmenu appears at the bottom of the screen. .TP ++.B \-c ++dmenu appears centered on the screen. ++.TP .B \-f dmenu grabs the keyboard before reading stdin if not reading from a tty. This is faster, but will lock up X until stdin reaches end\-of\-file. diff --git a/suckless/.local/src/dmenu/dmenu.c b/suckless/.local/src/dmenu/dmenu.c @@ -138,6 +138,16 @@ calcoffsets(void) break; } +static int +max_textw(void) +{ + int len = 0; + for (struct item *item = items; item && item->text; item++) + len = MAX(TEXTW(item->text), len); + return len; +} + + static void cleanup(void) { @@ -798,9 +808,10 @@ setup(void) utf8 = XInternAtom(dpy, "UTF8_STRING", False); /* calculate menu geometry */ - bh = drw->fonts->h + 2; + bh = drw->fonts->h + 10; lines = MAX(lines, 0); mh = (lines + 1) * bh; + promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0; #ifdef XINERAMA i = 0; if (parentwin == root && (info = XineramaQueryScreens(dpy, &n))) { @@ -827,9 +838,16 @@ setup(void) if (INTERSECT(x, y, 1, 1, info[i])) break; - x = info[i].x_org; - y = info[i].y_org + (topbar ? 0 : info[i].height - mh); - mw = info[i].width; + if (centered) { + mw = MAX(MAX(max_textw() + promptw, min_width), info[i].width); + x = info[i].x_org + ((info[i].width - mw) / 2); + y = info[i].y_org + ((info[i].height - mh) / menu_height_ratio); + } else { + x = info[i].x_org; + y = info[i].y_org + (topbar ? 0 : info[i].height - mh); + mw = info[i].width; + } + XFree(info); } else #endif @@ -837,9 +855,16 @@ setup(void) if (!XGetWindowAttributes(dpy, parentwin, &wa)) die("could not get embedding window attributes: 0x%lx", parentwin); - x = 0; - y = topbar ? 0 : wa.height - mh; - mw = wa.width; + + if (centered) { + mw = MIN(MAX(max_textw() + promptw, min_width), wa.width); + x = (wa.width - mw) / 2; + y = (wa.height - mh) / 2; + } else { + x = 0; + y = topbar ? 0 : wa.height - mh; + mw = wa.width; + } } promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0; inputw = MIN(inputw, mw/3); @@ -942,6 +967,8 @@ main(int argc, char *argv[]) topbar = 0; else if (!strcmp(argv[i], "-f")) /* grabs keyboard before reading stdin */ fast = 1; + else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */ + centered = 1; else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching */ fstrncmp = strncasecmp; fstrstr = cistrstr;