mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 12:09:03 +00:00
feat: #8 register relaunch obsidian to command palette
This commit is contained in:
parent
1ba0ffb550
commit
f4e4fad2aa
@ -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 |
|
| 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 |
|
| 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
|
### Quick notes
|
||||||
|
|
||||||
| Option | Description | Default |
|
| Option | Description | Default |
|
||||||
|
8
main.js
8
main.js
@ -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() {
|
onunload() {
|
||||||
log(LOG_CLEANUP);
|
log(LOG_CLEANUP);
|
||||||
|
Loading…
Reference in New Issue
Block a user