aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Don't ignore stdin in password modeadnano2024-05-053-5/+3
| | | | | This makes password mode work for wmenu and wmenu-run without special cases.
* Revert "Remove wmenu -P flag"adnano2024-05-045-5/+30
| | | | This reverts commit c05ab7520b452ee3b8bd974a18511dc370cbeabe.
* Version 0.1.8adnano2024-05-041-1/+1
|
* Remove wmenu -P flagadnano2024-05-045-30/+5
| | | | | This flag causes some issues with wmenu-run. It will be revisited in the next release.
* docs: Add wmenu-runadnano2024-05-031-2/+7
|
* Update README.mdadnano2024-05-031-1/+1
|
* wmenu-run: Don't overwrite PATHadnano2024-05-031-1/+2
|
* wmenu-run: Populate items from PATHadnano2024-05-034-44/+68
|
* Update README.mdadnano2024-05-021-1/+1
|
* Remove wmenu_run scriptadnano2024-05-022-37/+0
|
* Add wmenu-run executableadnano2024-05-027-1/+103
|
* Fix destruction of pool buffersadnano2024-05-026-27/+40
|
* Separate menu state from Wayland stateadnano2024-05-027-509/+578
|
* Drop wmenu -x optionadnano2024-05-025-61/+4
|
* make menu height accurate to dwm, dmenu, and dwl's bar patchsewn2024-04-141-1/+1
|
* Support xdg_activation_v1 protocoladnano2024-04-077-5/+71
|
* 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.
* add wmenu_run script, similar to dmenu_run scriptsewn2024-03-172-0/+37
| | | | | | | based off the works of sinanmohd, modified to be simpler and better to read, with shellcheck. Co-authored-by: sinanmohd <sinan@firemail.cc>
* port dmenu password patchsewn2024-03-174-6/+37
|
* 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.
* Version 0.1.7adnano2024-03-021-1/+1
|
* Free memory associated with the menu on exitadnano2024-03-025-99/+220
|
* Rename text_len to input_lenadnano2024-03-021-3/+3
|
* Fix output selection with -o flagadnano2024-03-012-4/+7
|
* Revert "Simplify movewordedge"adnano2024-02-271-6/+17
| | | | This reverts commit 8bcad262a4d047140767d9467ac5526bb768a95e.
* Drop unnecessary TODO commentadnano2024-02-271-1/+0
|
* Simplify read_menu_itemsadnano2024-02-271-7/+9
|
* Move menu and rendering logic into separate filesadnano2024-02-2710-962/+1023
|
* Update LICENSEadnano2024-02-271-1/+1
|
* Remove unused includesadnano2024-02-272-4/+0
|
* Improve formatting of docsadnano2024-02-271-28/+28
|
* Add C-Y keybinding to docsadnano2024-02-271-0/+3
|
* Simplify movewordedgeadnano2024-02-271-17/+7
|
* Add dmenu's Meta (Alt) keybindingsAmin Bandali2024-02-272-18/+86
| | | | | | | This change adds dmenu's mixture of Emacs+vim-style Meta keybindings. Also 'Page_Up' and 'Page_Down' were deprecated in upstream xkbcommon, so replace them with the new 'Prior' and 'Next' names respectively.
* Add token matching like dmenuAmin Bandali2024-02-271-4/+34
| | | | | | This change ports dmenu's token matching of space-separated input to wmenu to match the behaviour of dmenu, with a slightly more verbose but hopefully more readable implementation.
* Add more rendering functionsadnano2024-02-261-54/+64
|
* Check if selection is not null before dereferencingadnano2024-02-261-2/+2
|
* Add functions to render pages of itemsadnano2024-02-261-31/+34
|
* Refactor rendering codeadnano2024-02-261-96/+61
|
* Don't set selection if there are no pagesadnano2024-02-261-1/+3
|
* Don't match items in insertadnano2024-02-261-104/+105
|
* Add comments to menuadnano2024-02-261-49/+48
|
* Add some comments to item and pageadnano2024-02-261-5/+5
|
* Rename menu_state to menuadnano2024-02-261-333/+333
|
* Don't return -1 from render_horizontal_itemadnano2024-02-261-13/+9
|
* Rename menu_item to itemadnano2024-02-261-35/+38
|
* Mark functions as staticadnano2024-02-261-16/+16
|
* Rename item_group to pageadnano2024-02-261-82/+80
|
* Refactor item paging logicadnano2024-02-261-114/+102
| | | | | | Determine which items go on which page ahead of time to avoid calculating it every time. This also fixes an issue where paging from the back doesn't give the same results as paging from the front.
* Simplify match scrollingadnano2024-02-261-60/+28
|