This repository contains a curated catalog of plugins for qst, a terminal-first Linux application launcher built with Rust + Ratatui.
scripts/: plugin scripts used by qst (*.sh,*.pl,*.py, etc.).API.md: script protocol reference (f!directives, actions, output format).DOCS.md: installation, aliases, and authoring guide.
battery.shbluetooth.shbrightness.shcalculator.shclipboard.shhelp.shrunner.shsudo.shsymbols.shsymbols.plvolume.sh
mkdir -p ~/.config/qst/scripts
cp -r scripts/* ~/.config/qst/scripts/
chmod +x ~/.config/qst/scripts/*Optional aliases can be defined in ~/.config/qst/alias.toml.
If you use extension-based keys (.sh, .pl, etc.), quote them in TOML:
[scripts]
"volume.sh" = "v!"
battery = ":"
"clipboard.sh" = "+"
"symbols.pl" = "sym!"
[apps]
# You can also set app aliases!
"btop++" = "alacritty -e btop"Unquoted dotted keys also work, but they are interpreted as TOML dotted paths.
For protocol details, see API.md.