aboutsummaryrefslogtreecommitdiff
path: root/menu.c
Commit message (Collapse)AuthorAgeFilesLines
* feat: changed font and colorsjoshuaJoshua Yun4 days1-3/+3
|
* Render menu after surface enter eventadnano2025-03-011-22/+27
| | | | | This fixes an issue where the first visible frame is blurry on fractional scale displays.
* Only call render_menu once per frameM Stoeckl2024-11-011-1/+4
| | | | | An actual surface is not needed to estimate font sizes; a 1x1 image will do, as long as the cairo context has the same options.
* Optimize menu sortingM Stoeckl2024-10-311-35/+41
| | | | | | | Sorting and deduplicating elements after all items have been registered improves the time complexity of constructing the item list from O(n^2) to O(n log n). On a system with about 4000 menu items, this reduces startup time from about 0.21 seconds to 0.13 seconds.
* Streamline menu callbacksadnano2024-06-091-11/+4
|
* Don't ignore stdin in password modeadnano2024-05-051-1/+1
| | | | | This makes password mode work for wmenu and wmenu-run without special cases.
* Revert "Remove wmenu -P flag"adnano2024-05-041-1/+4
| | | | This reverts commit c05ab7520b452ee3b8bd974a18511dc370cbeabe.
* Remove wmenu -P flagadnano2024-05-041-4/+1
| | | | | This flag causes some issues with wmenu-run. It will be revisited in the next release.
* wmenu-run: Populate items from PATHadnano2024-05-031-35/+52
|
* Add wmenu-run executableadnano2024-05-021-0/+2
|
* Fix destruction of pool buffersadnano2024-05-021-5/+5
|
* Separate menu state from Wayland stateadnano2024-05-021-139/+40
|
* Drop wmenu -x optionadnano2024-05-021-53/+1
|
* make menu height accurate to dwm, dmenu, and dwl's bar patchsewn2024-04-141-1/+1
|
* Support xdg_activation_v1 protocoladnano2024-04-071-2/+56
|
* menu: Avoid adding zero-size pagesadnano2024-03-251-1/+3
| | | | | Ensure that pages always have at least one item, even if that item is too big to fit on any page.
* port dmenu password patchsewn2024-03-171-3/+11
|
* Don't destroy wl_data_offer twiceadnano2024-03-171-1/+0
| | | | | | | | The data offer is destroyed after it is used. There is no need to destroy it again. This also fixes an issue where calling wl_data_offer_destroy with a NULL data offer would segfault.
* Free memory associated with the menu on exitadnano2024-03-021-20/+129
|
* Rename text_len to input_lenadnano2024-03-021-3/+3
|
* Revert "Simplify movewordedge"adnano2024-02-271-6/+17
| | | | This reverts commit 8bcad262a4d047140767d9467ac5526bb768a95e.
* Simplify read_menu_itemsadnano2024-02-271-7/+9
|
* Move menu and rendering logic into separate filesadnano2024-02-271-0/+631