Add Command

import { commands } from '../commands';
commands.addCommand('plugins', {
    description: "List nautilus plugins",
    category: "Nautilus",
    async onRun(msg, args, theme, response) {
        for(const text of pluginTexts) {
            response(`TEXT ${text}`)
        }
    }
})

Here is an example command, remember that most of using Nautilus-Injector is currently just knowing how to use azalea APIs, and that Nautilus is just a way to easily add code into the archive for azalea currently. Some standard libraries are planned.

Last updated