pop-launcher/plugins/src/terminal/plugin.ron
Paul Delafosse a5c2569654
feat: add a history attribute to plugin config as described in #110 (#112)
* feat: add a history attribute to plugin config as described in #110

closes #110

* fix: Correct grammar mistake in comment

Co-authored-by: Jacob Kauffmann <jacobgkau@users.noreply.github.com>
2022-05-12 08:42:56 -06:00

12 lines
318 B
Text

(
name: "Terminal or background commands",
description: "Syntax: { run | t: | : } <command>\nExample: run sudo apt update",
query: (
regex: "^(:|t:|run ).*",
help: "run ",
isolate: true,
),
bin: (path: "terminal"),
icon: Name("utilities-terminal"),
history: true,
)