feat: #8 register relaunch obsidian to command palette

This commit is contained in:
dragonwocky 2023-04-10 13:05:33 +10:00
parent 1ba0ffb550
commit f4e4fad2aa
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 13 additions and 0 deletions

View File

@ -17,6 +17,11 @@ toggle app window visibility and can create quick notes from anywhere in your op
| Create tray icon | Add an icon to your system tray/menubar to bring hidden Obsidian windows back into focus on click or force a full quit/relaunch of the app through the right-click menu. _Changing this option requires a restart to take effect._ | Enabled |
| Toggle window focus hotkey | This hotkey is registered globally and will be detected even if Obsidian does not have keyboard focus. Format: [Electron accelerator](https://www.electronjs.org/docs/latest/api/accelerator) | CmdOrCtrl+Shift+Tab |
> **Note**
> The `Relaunch Obsidian` action can be triggered from the tray/menubar context menu, or with the in-app
> command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via
> Obsidian's built-in hotkey manager.
### Quick notes
| Option | Description | Default |

View File

@ -357,6 +357,14 @@ class TrayPlugin extends obsidian.Plugin {
})
);
}
// add as command: can be called from command palette
// and can have non-global hotkey assigned via in-app menu
this.addCommand({
id: "relaunch-app",
name: ACTION_RELAUNCH,
callback: relaunchObsidian,
});
}
onunload() {
log(LOG_CLEANUP);