From f4e4fad2aa405940db86464930b71c48d04168b9 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Mon, 10 Apr 2023 13:05:33 +1000 Subject: [PATCH] feat: #8 register relaunch obsidian to command palette --- README.md | 5 +++++ main.js | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index b0f8891..2eb3d09 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/main.js b/main.js index 551e3dd..f736fe9 100644 --- a/main.js +++ b/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() { log(LOG_CLEANUP);