Gabriel Kaszewski fb0d014ccd
Some checks failed
CI / clippy (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / test (push) Has been cancelled
feat: add dev-egui target to Makefile for easier development with egui
2026-07-24 13:57:45 +02:00
2026-03-15 19:03:30 +00:00
2026-07-24 13:42:14 +02:00
2026-03-15 19:03:30 +00:00
2026-07-24 13:42:14 +02:00
2026-07-24 13:42:14 +02:00
2026-07-24 13:42:14 +02:00
2026-07-24 13:42:14 +02:00
2026-07-24 13:42:14 +02:00
2026-07-24 13:42:14 +02:00

k-launcher

A lightweight command palette for Linux (Wayland/X11). Fuzzy search, frecency ranking, plugin system. Written in Rust.

Quick Start

git clone https://github.com/GKaszewski/k-launcher
cd k-launcher
make install

Or with cargo directly:

cargo build --release
cp target/release/k-launcher ~/.local/bin/

Arch Linux (AUR)

yay -S k-launcher

Usage

Input What it does Example
any text Fuzzy-search installed apps firefox
empty Show most-used apps (frecency)
> prefix Run shell command in terminal > htop
= or math Evaluate expression, copy result 2^10 + 5
/ or ~/ Browse filesystem ~/Documents

Keybinds

Key Action
/ Navigate results
Enter Launch / copy
Escape Close

Configuration

~/.config/k-launcher/config.toml — all fields optional, sensible defaults.

See config.example.toml for all available options.

Compositor Setup

Hyprland (~/.config/hypr/hyprland.conf):

windowrule = float, ^(k-launcher)$
windowrule = center, ^(k-launcher)$
bind = SUPER, Space, exec, k-launcher

Sway (~/.config/sway/config):

for_window [app_id="k-launcher"] floating enable, move position center
bindsym Mod4+space exec k-launcher

Plugins

Built-in plugins (calc, apps, shell, files) are enabled by default. External plugins communicate via JSON over stdin/stdout — any language, no recompilation:

[[plugins.external]]
name = "my-plugin"
path = "/path/to/plugin"
timeout_secs = 5

See Plugin Development for the full protocol.

Docs

License

MIT

Description
No description provided
Readme MIT 793 KiB
Languages
Rust 94.7%
Mermaid 2.9%
Shell 1.7%
Makefile 0.7%