diff options
| author | kj-sh604 | 2024-08-09 06:06:45 -0400 |
|---|---|---|
| committer | kj-sh604 | 2024-08-09 06:06:45 -0400 |
| commit | 37b844b5e7a280dbf82fa90ed7be61af5c3b377b (patch) | |
| tree | ef4535ab1f52a0bedebea16e14423e7750cf1ea5 /.local/src/dmenu-dunst | |
| parent | de06a24bb15c5ec3a08c9ce437a6489471e6997a (diff) | |
refactor: use an "integer" for `menu_height_ratio`
Diffstat (limited to '.local/src/dmenu-dunst')
| -rw-r--r-- | .local/src/dmenu-dunst/config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/src/dmenu-dunst/config.def.h b/.local/src/dmenu-dunst/config.def.h index c8d6666..338089b 100644 --- a/.local/src/dmenu-dunst/config.def.h +++ b/.local/src/dmenu-dunst/config.def.h @@ -4,7 +4,7 @@ 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 = 250; /* minimum width when centered */ -static const float menu_height_ratio = 2.25f; /* This is the ratio used in the original calculation */ +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[] = { "JetBrains Mono:size=14", |
