Fancy dynamic menu for X11 and Wayland, compatible with dmenu! https://spmenu.speedie.site
Go to file
2023-02-10 11:06:51 +01:00
docs rewrite line height feature, now works more like dwm bar height patch 2023-02-09 18:12:03 +01:00
scripts Add initial build of spmenu 2023-01-20 23:17:30 +01:00
.gitignore individual schemes and variables in color array 2023-01-23 14:14:41 +01:00
arg.h Add initial build of spmenu 2023-01-20 23:17:30 +01:00
colors.h separate input scheme 2023-01-23 17:08:27 +01:00
draw.c Add initial build of spmenu 2023-01-20 23:17:30 +01:00
draw.h Add initial build of spmenu 2023-01-20 23:17:30 +01:00
host.mk macOS lines you can uncomment if you want 2023-01-22 11:51:45 +01:00
keybinds.h speedwm-like keybind array replacing the previously hardcoded list of 2023-01-21 22:12:58 +01:00
LICENSE Add initial build of spmenu 2023-01-20 23:17:30 +01:00
main.c Add initial build of spmenu 2023-01-20 23:17:30 +01:00
main.h Add initial build of spmenu 2023-01-20 23:17:30 +01:00
Makefile add install compatibility option 2023-02-01 21:48:52 +01:00
options.h rewrite line height feature, now works more like dwm bar height patch 2023-02-09 18:12:03 +01:00
options.mk Add initial build of spmenu 2023-01-20 23:17:30 +01:00
README.md update readme 2023-01-22 11:48:27 +01:00
spmenu.c fix: extra spaces when ansi escape codes are used 2023-02-10 11:06:51 +01:00
toggle.mk add rtl language support (im going to use this for dboard) 2023-01-22 11:22:33 +01:00
xresources.h rewrite line height feature, now works more like dwm bar height patch 2023-02-09 18:12:03 +01:00

spmenu

image

What is spmenu?

spmenu is an X11 menu application based on dmenu which takes standard input, parses it, and lets the user choose an option and sends the selected option to standard output.

It is designed to integrate well with my dwm fork, speedwm.

Special features

This build of spmenu has some features written for this build. Of course if you want, this is free software so you can use it in your own build.

  • dwm-like keybind array (See keybinds.h)
  • 256 color support through SGR codes.
  • Option to block typing.
  • Rewritten arguments, old arguments still work though.
  • Border only when centered option
  • Hiding each part of the menu

Other features

Note: This is an incomplete list, it's just here to give you an idea of what this build has to offer.

  • Pango markup support
  • Alpha transparency
  • Pywal/.Xresources support
  • Grid
  • Colored Emoji/Font support
  • Highlighting
  • Right-to-left language support
  • Case-insensitive by default
  • Padding; useful with patched dwm with barpadding or speedwm.
  • Fuzzy-finding
  • Preselect support
  • Line-height
  • History support

Dependencies

  • libX11
  • libXrender
  • freetype
  • libXinerama
    • Can be disabled if you don't want/need multi-monitor support.
  • tcc compiler (you can swap it out for GCC by passing CC="gcc" to the make command if you want)
  • Pango (for drawing fonts)

Installation (most GNU/Linux distributions)

emerge dev-vcs/git # Install dev-vcs/git using your favorite package manager

git clone https://codeberg.org/speedie/spmenu

cd spmenu/

make clean install # Run as root.

Installation (Gentoo)

If you are on Gentoo GNU/Linux, you can add my overlay which includes x11-misc/spmenu as well as other useful packages.

.Xresources values

This build allows you to define .Xresources values to load on startup. See docs/example.Xresources for a list of default values.

Scripts

This build of spmenu should work with all spmenu scripts. Here are a few I've written/use:

Notes for users of Arch

This fork of spmenu is compiled using tcc for speed however tcc from the Arch repositories seems to be broken. I'm sure there's a better way to fix this but I just fix it by installing this package from the AUR.

Notes for GCC users

If you're compiling with GCC, chances are you're seeing a lot of warnings. This is because we're compiling with -Ofast. I can't seem to find any issues with using -Ofast but if it bothers you, you can compile with -Os or -O2 which don't spit out these warnings.