update docs and pkgbuild

This commit is contained in:
speedie 2023-04-03 00:53:42 +02:00
parent 15cc9cd60c
commit 13b4c95982
6 changed files with 17 additions and 12 deletions

View file

@ -3,7 +3,7 @@
pkgname=spmenu
pkgver=VERSION
pkgrel=1
pkgdesc="speedie's fork of suckless dmenu with color support and more"
pkgdesc="Fancy dynamic menu, compatible with dmenu!"
url="https://git.speedie/gq/spmenu"
arch=(i686 x86_64)
license=(MIT)

View file

@ -153,6 +153,7 @@ allowing keybinds to be configured without recompiling spmenu.</li>
<li>Image support: Stop using OpenSSL for caching images, mostly because
MD5() is deprecated as of OpenSSL 3.0, but this would also make it very
easy to have LibreSSL compatibility.</li>
<li>Image support: Ability to display icons, similar to rofi</li>
<li>Matching: Add support for contextual completions similar to
xprompt</li>
<li>Text drawing: Use cairo for text drawing over Xft.</li>

View file

@ -127,6 +127,7 @@ keybinds to be configured without recompiling spmenu.
- Image support: Stop using OpenSSL for caching images, mostly because MD5()
is deprecated as of OpenSSL 3.0, but this would also make it very easy to
have LibreSSL compatibility.
- Image support: Ability to display icons, similar to rofi
- Matching: Add support for contextual completions similar to xprompt
- Text drawing: Use cairo for text drawing over Xft.
- Matching: FIFO, used to dynamically refresh entries.

View file

@ -2,11 +2,13 @@ spmenu
======
spmenu is a program for X11 that reads standard input and allows the user to
select items separated by a newline. It is a fork of suckless's dmenu which is
a good more minimal alternative to spmenu.
select items separated by a newline. It is a fork of
[suckless's dmenu](https://tools.suckless.org/dmenu) which is a good more
minimal alternative to spmenu.
Unlike dmenu and the many builds out there, spmenu has features like color
support, Vim-like modes, image support, proper keybind configuration, and more.
What makes spmenu different from all the dmenu forks is that spmenu has
features like color support, Vim-like modes, image support,
proper mouse/keybind configuration, and more.
It should be noted that most of these features may be disabled by the user, either
during compile time or through configuration.

View file

@ -1,6 +1,7 @@
/* spmenu
/* spmenu - fancy dynamic menu
*
* Below is a configuration file which is technically C source code.
* See the LICENSE file for license details.
* See the included LICENSE file for license details.
*/
/* spmenu options */

View file

@ -20,12 +20,12 @@
.PP
spmenu is a program for X11 that reads standard input and allows the
user to select items separated by a newline.
It is a fork of suckless\[cq]s dmenu which is a good more minimal
alternative to spmenu.
It is a fork of suckless\[cq]s dmenu (https://tools.suckless.org/dmenu)
which is a good more minimal alternative to spmenu.
.PP
Unlike dmenu and the many builds out there, spmenu has features like
color support, Vim-like modes, image support, proper keybind
configuration, and more.
What makes spmenu different from all the dmenu forks is that spmenu has
features like color support, Vim-like modes, image support, proper
mouse/keybind configuration, and more.
.PP
It should be noted that most of these features may be disabled by the
user, either during compile time or through configuration.