Commit Graph

598 Commits

Author SHA1 Message Date
Santiago Lo Coco feda9c39f2 Update config.def.h 2024-05-15 20:06:52 +02:00
Santiago Lo Coco d2f18a78f7 Exclude cmds from the histogram 2022-07-21 09:06:21 -03:00
Hiltjo Posthuma 57a911cd94 remove false-positive warning for int comparison as bool
Reported by Prathu Baronia <prathu.baronia@praton.me>, patch slightly changed.

Thanks!
2022-03-11 10:08:10 -03:00
Hiltjo Posthuma 0f330775fc bump version to 5.1 2022-03-11 10:07:56 -03:00
Hiltjo Posthuma fc1ae5bc47 revert using strcasestr and use a more optimized portable version
... compared to the old cistrstr().

Thanks for the feedback!
2022-03-11 10:06:43 -03:00
Hiltjo Posthuma faea1089e8 follow-up fix: add -D_GNU_SOURCE for strcasestr for some systems 2022-03-11 10:04:48 -03:00
Hiltjo Posthuma ca6b0d72ac improve performance of case-insensitive matching 2022-03-11 10:03:05 -03:00
Santiago Lo Coco 09aa3c6c91 Fix typos 2022-03-11 09:54:46 -03:00
Santiago Lo Coco b4735fb62c Update LICENSE 2022-03-11 09:53:52 -03:00
Santiago Lo Coco ddb5587b19 Update README.md 2022-03-11 09:53:29 -03:00
Santiago Lo Coco bf2826427c Use markdown 2022-03-11 09:51:47 -03:00
Santiago Lo Coco 3350a0a2a0 Remove patches folder 2022-03-11 09:51:27 -03:00
Santiago Lo Coco 0057ff8083 Update .gitignore 2022-03-11 09:51:02 -03:00
Santiago Lo Coco 5e392842c0 Add dummy flag -i for compatibility 2022-01-11 18:15:41 -03:00
Hiltjo Posthuma e8fd026038 Revert "Improve speed of drw_text when provided with large strings"
This reverts commit c585e8e498ec6f9c423ab8ea07cf853ee5b05fbe.

It causes issues with truncation of characters when the text does not fit and
so on.  The patch should be reworked and properly tested.
2021-12-22 00:00:05 -03:00
Santiago Lo Coco 24d86bd24d Add gitignore 2021-12-21 23:59:04 -03:00
Santiago Lo Coco db7d535034 Added dmenu_terminal (to launch cli programs) and dmenu_run_history (to sort by history the output of dmenu) 2021-08-19 17:44:37 -03:00
Santiago Lo Coco 72c2aeca25 Added max_width option (-z) 2021-08-13 16:20:29 -03:00
Hiltjo Posthuma 4350772753 add support for more keypad keys
The keypad Enter key was already supported. On some keyboard layouts like my
laptop the page-up and page-down key is more comfortable to use.
This adds a few lines but no complexity.
2021-08-13 15:20:28 -03:00
Miles Alan 6df1756fff Improve speed of drw_text when provided with large strings
Calculates len & ew in drw_font_getexts loop by incrementing instead of
decrementing; as such avoids proportional increase in time spent in loop
based on provided strings size.
2021-08-13 15:20:21 -03:00
Guilherme Janczak 3ea1251dc6 remove always true condition in if statement 2021-08-13 15:20:04 -03:00
Santiago Lo Coco d58e23814e Added dmenu_terminal 2021-08-13 15:11:27 -03:00
Santiago Lo Coco fc821fb843 Added center, border and case insensitive 2021-02-28 22:51:06 -03:00
Santiago Lo Coco 4540431e35 Changed README 2021-02-28 22:27:29 -03:00
Santiago Lo Coco 8702aee76b Minor changes 2020-11-19 11:37:14 -03:00
Hiltjo Posthuma 1a13d0465d bump version to 5.0
... and bump LICENSE year.
2020-09-02 18:31:23 +02:00
Hiltjo Posthuma 9b38fda6fe Fix memory leaks in drw
Synced from dwm.
Patch by Alex Flierl <shad0w73@freenet.de>, thanks.
2020-06-11 18:45:33 +02:00
Hiltjo Posthuma db6093f6ec revert IME support
dmenu will not handle IME support (st will, atleast for now).

revert parts of commit 377bd37e21
this commit also broke input focus.
2019-03-03 13:08:54 +01:00
Hiltjo Posthuma a9b1de384a improve xopenim error message
die() already prints a newline.
2019-02-12 22:58:35 +01:00
Hiltjo Posthuma 43b0c2c3dd make dmenu_path script executable
(as dmenu_run is)
2019-02-12 22:13:58 +01:00
Hiltjo Posthuma f5036b90ef fix crash when XOpenIM returns NULL
for example when IME variables are set, but the program is not started (yet).
2019-02-12 19:10:43 +01:00
Quentin Rameau 153aaf88bf Close when the embedding window is destroyed 2019-02-04 19:49:34 +01:00
Anselm R Garbe 65be875f5a Prepared 4.9 release. 2019-02-02 04:54:15 -08:00
Hiltjo Posthuma 7d19b2055d dmenu.1: document improved fastgrab behaviour from previous patch 2019-01-27 15:28:02 +01:00
dok 11a65377da Use slow path if stdin is a tty
If stdin is a tty and dmenu is ran with the fast option then it's
impossible to close stdin because the keyboard is already grabbed.
2019-01-27 15:26:04 +01:00
Quentin Rameau bbc464dc80 dmenu_path: always use the cachedir 2018-07-21 12:49:00 +02:00
Hiltjo Posthuma a314412f4b Makefile: just show the compiler output
Don't be fancy and just show the actual output so debugging is simpler.
2018-06-02 17:09:01 +02:00
Hiltjo Posthuma a9eae39e93 Do not strip at link stage
Building with debug symbols is worthless unless LDFLAGS are manually adjusted
as well.
2018-06-02 17:01:24 +02:00
Hiltjo Posthuma 851b73d178 code-style for pledge: check the return code -1, not < 0
this is the proper idiom
2018-05-25 13:07:17 +02:00
Hiltjo Posthuma 05c138f5b8 code-style for pledge(2)
feedback from Klemens, thanks
2018-05-25 13:03:25 +02:00
Hiltjo Posthuma cd132c8d5b Pledge on OpenBSD 2018-05-25 12:04:22 +02:00
David Demelier e75494b730 Use bold for keyboard shortcuts in dmenu.1
Like dwm, use the same syntax for all keyboard shortcuts for
consistency.
2018-05-12 19:12:25 +02:00
Quentin Rameau 0f76dd2fb8 Fix cursor drawn position with wide glyphs 2018-04-22 14:19:20 +02:00
Quentin Rameau 0b57480218 Makefile: bikesheddingly replace ${} with $() 2018-04-22 14:09:05 +02:00
Quentin Rameau 377bd37e21 Handle IME input
Thanks to nzl <uruabi@gmail.com> for the patch!
2018-04-22 14:09:05 +02:00
Hiltjo Posthuma b6d2cc9aea Fix handling of input strings 2018-04-22 14:09:05 +02:00
Quentin Rameau 2f398981fe Update LICENSE
Only "meaningful" commits and contributors who made changes over the
years have been added.
2018-03-15 18:29:32 +01:00
Hiltjo Posthuma 23051d78dd bump version to 4.8 2018-03-14 19:48:05 +01:00
Quentin Rameau e2a280541e add key bindings for moving to the word start or end
Mod1+b/^Left and Mod1+f/^Right
2018-03-13 20:10:46 +01:00
Hiltjo Posthuma 889512811d Fix regression in 84a1bc5
Reported by Jochen Sprickerhof, thanks!

Applied patch with minor change (only initialize `i` for XINERAMA).
2018-01-04 23:45:49 +01:00