# 📦 Plugins
← Configuration
## 🧩 Built-in plugins
Type `plugins` to list all loaded modules and toggle them on/off.
Or edit the `Plugins.json` file.
| Plugin | Description |
|---|---|
| App | Searches and launches installed applications |
| Calc | Evaluates math expressions and copies the result |
| System | Lock, sleep, restart, shutdown - with confirmation |
| Shell | Executes shell commands and manages named shortcuts |
| Everything | Searches through your folders |
# 📜 `Plugins.json`
Plugin management. Edit directly or via the `plugins` command inside InputBar.
```json
{
"Calc.py": {
"toggle": true,
"keyword": [
"calc",
"*"
]
},
"System.py": {
"toggle": true,
"keyword": [
"system",
"*"
]
},
"App/App.py": {
"toggle": true,
"keyword": [
"app",
"*"
]
},
"Shell/Shell.py": {
"toggle": true,
"keyword": [
"shell",
"*"
]
}
...
```
The `"*"` keyword means the plugin responds to all searches (global mode).
Without `"*"`, the plugin only activates when the search starts with its keyword.