unmanbearpig / unmenu

GNU General Public License v3.0
3 stars 2 forks source link

unmenu

This repository is a fork of dmenu-mac (https://github.com/oNaiPs/dmenu-mac), enhancing its functionality and addressing certain issues.

Changes and New Features

Building

make

Or make install to copy the app into /Applications

  1. Build fuzzylib This step requires Rust installed
cargo build --release --manifest-path=fuzzylib/Cargo.toml
cp fuzzylib/target/release/libfuzzylib.a mac-app/
  1. Build macOS application: Requires Xcode

CLI:

xcodebuild -project mac-app/unmenu.xcodeproj -scheme unmenu -derivedDataPath build -configuration Release build
cp -r mac-app/Build/Products/Release/unmenu.app /Applications/

OR

GUI:

Getting started

  1. Launch the app open -a unmenu
  2. Follow instructions to enable permissions
  3. Hit Ctrl-Cmd-b by deafult
  4. Customize settings by editing ~/.config/unmenu/config.toml according to your preferences

Scripts / Aliases

Users can incorporate various scripts and aliases into unmenu for extended functionality.

  1. Set up a directory to store your scripts
  2. Add your scripts with appropriate shebangs, and ensure they are executable (chmod +x).
  3. Include the script directory in the dirs variable within the configuration.
  4. Ensure that find_executables is set to true in the config file

After these steps, you can execute scripts directly from unmenu by invoking their names via unmenu. This allows for the addition of aliases or any desired custom functionality.

Authors

@onaips - Original Author @unmanbearpig - Author of this fork