This repo is the community plugin source for Noctalia. Every plugin merged here is listed in the shell's plugin store and on noctalia.dev/plugins, and users can install it without adding a source of their own.
Plugins maintained by the core team live in official-plugins, which does not accept third-party plugins. This one does. PRs are welcome.
The plugin system is in beta. The manifest format and the plugin API may still change before v5 is stable. Expect to bump your plugin when they do.
Each plugin is one top-level directory, named after the part of its id that follows the /, so me/hello lives
in hello/:
hello/
plugin.toml # manifest: id ("me/hello"), metadata, entries, settings
hello.luau # your entry scripts
README.md # rendered as the plugin's page on noctalia.dev
thumbnail.webp # the plugin's card image
translations/
en.json # every label_key / description_key the manifest references
catalog.toml at the repo root indexes every plugin. It is generated by CI, so never edit it or include it in a
commit.
A plugin id is <author>/<plugin>. The author part is yours (your GitHub handle is the obvious choice) and keeps your
id distinct from everyone else's, but the directory name is first-come within this repo. If weather/ is already
taken, pick another name; the official repo is a separate source, so a name used there is not taken here. Both id
segments must be lowercase and match [a-z0-9][a-z0-9._-]*.
Noctalia plugins are trusted, unsandboxed Luau. There is no permission broker and no capability sandbox: installing a plugin is equivalent to running a script the user owns. It can read and write files, spawn processes, and talk to the network as the user.
That is a deliberate design choice, and it puts the burden on review. So:
dependencies in plugin.toml and get a mention in your
README.Anything that looks like it is hiding what it does will be rejected, regardless of intent.
The plugin development docs are the reference: the
manifest, the
entry types ([[widget]], [[panel]], [[shortcut]],
[[service]], [[desktop_widget]], [[launcher_provider]]), the
declarative UI vocabulary, the
runtime API, and the
workflow for developing and testing locally.
The fastest start is to read
noctalia/example in the official repo. It
exercises a bar widget, a declarative widget, a service, a shortcut, a launcher provider, and a panel in one plugin.
To run your plugin while you work on it, add this checkout as a path source:
noctalia msg plugins source add dev path ~/dev/community-plugins
noctalia msg plugins enable me/hello
.luau edits hot-reload; manifest changes are picked up on the next config reload.
noctalia.d.luau declares the whole plugin API, so luau-lsp gives you autocomplete and typo diagnostics. It lives in
official-plugins, which is its single source of truth; it is not vendored here, because a committed copy would be a
second one for everyone to trust and keep in sync. Fetch it into the repo root, where it is gitignored:
curl -O https://raw.githubusercontent.com/noctalia-dev/official-plugins/main/noctalia.d.luau
Re-run that whenever the plugin API changes; your local copy is a snapshot, not a subscription.
The committed .vscode/settings.json already points luau-lsp at it; for another editor, add it to luau-lsp's
types.definitionFiles. .luaurc sets nonstrict mode, matching the --!nonstrict directive every plugin file
starts with.
Every plugin ships a thumbnail.webp. It is the card image in the plugin store and on the website. Generate one with
the thumbnail generator: drop in a screenshot of
your plugin, set the title, category tag and accent color, then export the 960×540 WebP and commit it as
<plugin>/thumbnail.webp.
README.md is the plugin's public page, so it must tell a user how to access every entry instead of only describing
the implementation. Follow README_TEMPLATE.md, which mirrors the structure used by the
official plugins:
Plugin table, and practical Usage instructions.plugin.toml.noctalia msg panel-toggle <author>/<plugin>:<panel-id>./<prefix> and give an example query.Requirements, using the exact dependency name.IPC and Notes when the plugin exposes extra events or has important filesystem, network, process, privacy,
hardware, or compositor behavior.CI derives ids, panel commands, launcher prefixes, dependencies, and whether settings exist from plugin.toml. Its
error messages show the exact missing value, while maintainers review the usefulness and accuracy of the prose.
[!WARNING] Editing existing translations must be done on Noctalia Translate, the single source of truth for all translated strings. Do not edit the strings of an existing translation in the locale JSON files here: they will most likely be overwritten on the next i18n pull.
Write translations/en.json only. Every label_key and description_key in your manifest must resolve to a key in
it, and CI checks this. Do not add machine-translated locales; other languages are handled separately.
To test the latest translated locales from Noctalia Translate in a working checkout, run:
./.tools/i18n-pull.sh
The command asks for confirmation and overwrites the locale files returned by the translation service. It does not delete local locale files that are absent from the export. Review the resulting diff before committing anything.
The tags in plugin.toml are used for catalog search. Tags must be lowercase and selected from this list:
bar, desktop, launcher, panel, service, shortcutai, animation, audio, clock, countdown, demo, development, emoticon, fun, gaming,
hardware, indicator, language, media, music, network, privacy, productivity, recording, system,
theming, time, utility, video, wallpaperhyprland, labwc, mangowc, niri, swayarch, debian, fedora, gentoo, nixos, opensuse, voidIf your plugin does not fit any existing tag, propose a new one in your pull request rather than inventing a tag in the manifest.
Open a PR against main. CI validates your manifest, entry scripts, required files, and thumbnail on every push.
id after the / in plugin.toml exactly.version is semver and gets bumped on every change to the plugin.plugin_api is the oldest Noctalia plugin API level the plugin requires. Use the current documented level for a new
plugin, and increase it only when the plugin adopts a capability from a newer API level.description is concise catalog copy, limited to 120 characters. Put feature details in the plugin's README.license is set in plugin.toml. You keep the copyright on your plugin; if it is not MIT, put a LICENSE file in
your plugin directory. There is no repo-wide license covering contributed plugins.Maintainers read the code before merging. Expect review comments about clarity, and about anything the plugin does that is not obvious from its description.
The plugin directory is yours. Someone else's PR changing your plugin is not merged without your sign-off, unless it fixes something that is broken or is a mechanical change applied across the whole repo. Maintainers will @-mention you on PRs and issues that touch it.
If you stop maintaining a plugin, set deprecated = true in its plugin.toml rather than deleting the directory. The
store keeps working for people who already installed it, but it stops being offered to new users. Plugins that are
broken and unmaintained across a Noctalia release may be deprecated by maintainers.
(top 30 of 119)
Luau
80.2%
Python
11.3%
Lua
4.8%
Shell
1.6%
C
1.0%
This repo is the community plugin source for Noctalia. Every plugin merged here is listed in the shell's plugin store and on noctalia.dev/plugins, and users can install it without adding a source of their own.
Plugins maintained by the core team live in official-plugins, which does not accept third-party plugins. This one does. PRs are welcome.
The plugin system is in beta. The manifest format and the plugin API may still change before v5 is stable. Expect to bump your plugin when they do.
Each plugin is one top-level directory, named after the part of its id that follows the /, so me/hello lives
in hello/:
hello/
plugin.toml # manifest: id ("me/hello"), metadata, entries, settings
hello.luau # your entry scripts
README.md # rendered as the plugin's page on noctalia.dev
thumbnail.webp # the plugin's card image
translations/
en.json # every label_key / description_key the manifest references
catalog.toml at the repo root indexes every plugin. It is generated by CI, so never edit it or include it in a
commit.
A plugin id is <author>/<plugin>. The author part is yours (your GitHub handle is the obvious choice) and keeps your
id distinct from everyone else's, but the directory name is first-come within this repo. If weather/ is already
taken, pick another name; the official repo is a separate source, so a name used there is not taken here. Both id
segments must be lowercase and match [a-z0-9][a-z0-9._-]*.
Noctalia plugins are trusted, unsandboxed Luau. There is no permission broker and no capability sandbox: installing a plugin is equivalent to running a script the user owns. It can read and write files, spawn processes, and talk to the network as the user.
That is a deliberate design choice, and it puts the burden on review. So:
dependencies in plugin.toml and get a mention in your
README.Anything that looks like it is hiding what it does will be rejected, regardless of intent.
The plugin development docs are the reference: the
manifest, the
entry types ([[widget]], [[panel]], [[shortcut]],
[[service]], [[desktop_widget]], [[launcher_provider]]), the
declarative UI vocabulary, the
runtime API, and the
workflow for developing and testing locally.
The fastest start is to read
noctalia/example in the official repo. It
exercises a bar widget, a declarative widget, a service, a shortcut, a launcher provider, and a panel in one plugin.
To run your plugin while you work on it, add this checkout as a path source:
noctalia msg plugins source add dev path ~/dev/community-plugins
noctalia msg plugins enable me/hello
.luau edits hot-reload; manifest changes are picked up on the next config reload.
noctalia.d.luau declares the whole plugin API, so luau-lsp gives you autocomplete and typo diagnostics. It lives in
official-plugins, which is its single source of truth; it is not vendored here, because a committed copy would be a
second one for everyone to trust and keep in sync. Fetch it into the repo root, where it is gitignored:
curl -O https://raw.githubusercontent.com/noctalia-dev/official-plugins/main/noctalia.d.luau
Re-run that whenever the plugin API changes; your local copy is a snapshot, not a subscription.
The committed .vscode/settings.json already points luau-lsp at it; for another editor, add it to luau-lsp's
types.definitionFiles. .luaurc sets nonstrict mode, matching the --!nonstrict directive every plugin file
starts with.
Every plugin ships a thumbnail.webp. It is the card image in the plugin store and on the website. Generate one with
the thumbnail generator: drop in a screenshot of
your plugin, set the title, category tag and accent color, then export the 960×540 WebP and commit it as
<plugin>/thumbnail.webp.
README.md is the plugin's public page, so it must tell a user how to access every entry instead of only describing
the implementation. Follow README_TEMPLATE.md, which mirrors the structure used by the
official plugins:
Plugin table, and practical Usage instructions.plugin.toml.noctalia msg panel-toggle <author>/<plugin>:<panel-id>./<prefix> and give an example query.Requirements, using the exact dependency name.IPC and Notes when the plugin exposes extra events or has important filesystem, network, process, privacy,
hardware, or compositor behavior.CI derives ids, panel commands, launcher prefixes, dependencies, and whether settings exist from plugin.toml. Its
error messages show the exact missing value, while maintainers review the usefulness and accuracy of the prose.
[!WARNING] Editing existing translations must be done on Noctalia Translate, the single source of truth for all translated strings. Do not edit the strings of an existing translation in the locale JSON files here: they will most likely be overwritten on the next i18n pull.
Write translations/en.json only. Every label_key and description_key in your manifest must resolve to a key in
it, and CI checks this. Do not add machine-translated locales; other languages are handled separately.
To test the latest translated locales from Noctalia Translate in a working checkout, run:
./.tools/i18n-pull.sh
The command asks for confirmation and overwrites the locale files returned by the translation service. It does not delete local locale files that are absent from the export. Review the resulting diff before committing anything.
The tags in plugin.toml are used for catalog search. Tags must be lowercase and selected from this list:
bar, desktop, launcher, panel, service, shortcutai, animation, audio, clock, countdown, demo, development, emoticon, fun, gaming,
hardware, indicator, language, media, music, network, privacy, productivity, recording, system,
theming, time, utility, video, wallpaperhyprland, labwc, mangowc, niri, swayarch, debian, fedora, gentoo, nixos, opensuse, voidIf your plugin does not fit any existing tag, propose a new one in your pull request rather than inventing a tag in the manifest.
Open a PR against main. CI validates your manifest, entry scripts, required files, and thumbnail on every push.
id after the / in plugin.toml exactly.version is semver and gets bumped on every change to the plugin.plugin_api is the oldest Noctalia plugin API level the plugin requires. Use the current documented level for a new
plugin, and increase it only when the plugin adopts a capability from a newer API level.description is concise catalog copy, limited to 120 characters. Put feature details in the plugin's README.license is set in plugin.toml. You keep the copyright on your plugin; if it is not MIT, put a LICENSE file in
your plugin directory. There is no repo-wide license covering contributed plugins.Maintainers read the code before merging. Expect review comments about clarity, and about anything the plugin does that is not obvious from its description.
The plugin directory is yours. Someone else's PR changing your plugin is not merged without your sign-off, unless it fixes something that is broken or is a mechanical change applied across the whole repo. Maintainers will @-mention you on PRs and issues that touch it.
If you stop maintaining a plugin, set deprecated = true in its plugin.toml rather than deleting the directory. The
store keeps working for people who already installed it, but it stops being offered to new users. Plugins that are
broken and unmaintained across a Noctalia release may be deprecated by maintainers.
(top 30 of 119)
Luau
80.2%
Python
11.3%
Lua
4.8%
Shell
1.6%
C
1.0%