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}`)
}
}
})Last updated