From 6a76f575edbfb6fb9ea6cb069b161c9b49663cfc Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Thu, 24 Aug 2023 18:40:15 +1000 Subject: [PATCH] revert hotkey changes as per #19 --- README.md | 30 +++++++++++++++--------------- main.js | 4 ++-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 256eb7c..afb67b1 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,16 @@ toggle window visibility and create quick notes from anywhere in your operating ### Window management -| Option | Description | Default | -| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------- | -| Launch on startup | Open Obsidian automatically whenever you log into your computer. | Disabled | -| Hide on launch | Minimises Obsidian automatically whenever the app is launched. If the "Run in background" option is enabled, windows will be hidden to the system tray/menubar instead of minimised to the taskbar/dock. | Disabled | -| Run in background | Hide the app and continue to run it in the background instead of quitting it when pressing the window close button or toggle focus hotkey. | Disabled | -| Hide taskbar icon | Hides the window's icon from from the dock/taskbar. This may not work on Linux-based OSes. | Disabled | -| 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. | Enabled | -| Tray icon image | Set the image used by the tray/menubar icon. Recommended size: 16x16 | ![](obsidian.png) | -| Tray icon tooltip | Set a title to identify the tray/menubar icon by. The `{{vault}}` placeholder will be replaced by the vault name. | `{{vault}} \| Obsidian` | -| 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) | Super+Shift+Tab | +| Option | Description | Default | +| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ | +| Launch on startup | Open Obsidian automatically whenever you log into your computer. | Disabled | +| Hide on launch | Minimises Obsidian automatically whenever the app is launched. If the "Run in background" option is enabled, windows will be hidden to the system tray/menubar instead of minimised to the taskbar/dock. | Disabled | +| Run in background | Hide the app and continue to run it in the background instead of quitting it when pressing the window close button or toggle focus hotkey. | Disabled | +| Hide taskbar icon | Hides the window's icon from from the dock/taskbar. This may not work on Linux-based OSes. | Disabled | +| 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. | Enabled | +| Tray icon image | Set the image used by the tray/menubar icon. Recommended size: 16x16 | ![](obsidian.png) | +| Tray icon tooltip | Set a title to identify the tray/menubar icon by. The `{{vault}}` placeholder will be replaced by the vault name. | `{{vault}} \| Obsidian` | +| 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 | The `Relaunch Obsidian` and `Close Vault` actions can be triggered from the tray/menubar context menu, or with the in-app command palette (search for "Tray: Relaunch Obsidian" or "Tray: Close Vault"). @@ -25,11 +25,11 @@ Hotkeys can be assigned to the commands via Obsidian's built-in hotkey manager. ### Quick notes -| Option | Description | Default | -| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ | -| Quick note location | New quick notes will be placed in this folder. | | -| Quick note date format | New quick notes will use a filename of this pattern. Format: [Moment.js format string](https://momentjs.com/docs/#/displaying/format/) | `YYYY-MM-DD` | -| Quick note 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) | Super+Shift+Q | +| Option | Description | Default | +| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------- | +| Quick note location | New quick notes will be placed in this folder. | | +| Quick note date format | New quick notes will use a filename of this pattern. Format: [Moment.js format string](https://momentjs.com/docs/#/displaying/format/) | `YYYY-MM-DD` | +| Quick note 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+Q | ## Installation diff --git a/main.js b/main.js index 388dd47..74440c0 100644 --- a/main.js +++ b/main.js @@ -327,7 +327,7 @@ const OPTIONS = [ key: "toggleWindowFocusHotkey", desc: ACCELERATOR_FORMAT, type: "hotkey", - default: "Super+Shift+Tab", + default: "CmdOrCtrl+Shift+Tab", onBeforeChange: unregisterHotkeys, onChange: registerHotkeys, }, @@ -351,7 +351,7 @@ const OPTIONS = [ key: "quickNoteHotkey", desc: ACCELERATOR_FORMAT, type: "hotkey", - default: "Super+Shift+Q", + default: "CmdOrCtrl+Shift+Q", onBeforeChange: unregisterHotkeys, onChange: registerHotkeys, },