mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 12:09:03 +00:00
feat: make tray icon tooltip configurable
This commit is contained in:
parent
16d577d67e
commit
b8834b1286
19
README.md
19
README.md
@ -8,15 +8,16 @@ toggle app window visibility and can create quick notes from anywhere in your op
|
|||||||
|
|
||||||
### Window management
|
### Window management
|
||||||
|
|
||||||
| Option | Description | Default |
|
| Option | Description | Default |
|
||||||
| -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- |
|
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ |
|
||||||
| Launch on startup | Open Obsidian automatically whenever you log into your computer. | Disabled |
|
| 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 |
|
| 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 |
|
| 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 all Linux-based OSes. | 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. _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. | Enabled |
|
||||||
| Tray icon image | Set the image used by the tray/menubar icon. Recommended size: 16x16 _Changing this option requires a restart to take effect._ |  |
|
| Tray icon image | Set the image used by the tray/menubar icon. Recommended size: 16x16 |  |
|
||||||
| 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 |
|
| 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) | <kbd>CmdOrCtrl+Shift+Tab</kbd> |
|
||||||
|
|
||||||
The `Relaunch Obsidian` action can be triggered from the tray/menubar context menu, or with the in-app
|
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
|
command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via
|
||||||
|
41
main.js
41
main.js
@ -125,6 +125,9 @@ const addQuickNote = () => {
|
|||||||
plugin.app.fileManager.createAndOpenMarkdownFile(name);
|
plugin.app.fileManager.createAndOpenMarkdownFile(name);
|
||||||
showWindows();
|
showWindows();
|
||||||
},
|
},
|
||||||
|
replaceVaultName = (str) => {
|
||||||
|
return str.replace(/{{vault}}/g, plugin.app.vault.getName());
|
||||||
|
},
|
||||||
destroyTray = () => {
|
destroyTray = () => {
|
||||||
tray?.destroy();
|
tray?.destroy();
|
||||||
tray = undefined;
|
tray = undefined;
|
||||||
@ -161,7 +164,7 @@ const addQuickNote = () => {
|
|||||||
]);
|
]);
|
||||||
tray = new Tray(obsidianIcon);
|
tray = new Tray(obsidianIcon);
|
||||||
tray.setContextMenu(contextMenu);
|
tray.setContextMenu(contextMenu);
|
||||||
tray.setToolTip(plugin.app.vault.getName() ?? "Obsidian");
|
tray.setToolTip(replaceVaultName(plugin.settings.trayIconTooltip));
|
||||||
tray.on("click", () => toggleWindows(false));
|
tray.on("click", () => toggleWindows(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -222,7 +225,7 @@ const OPTIONS = [
|
|||||||
key: "hideTaskbarIcon",
|
key: "hideTaskbarIcon",
|
||||||
desc: `
|
desc: `
|
||||||
Hides the window's icon from from the dock/taskbar. Enabling the tray icon first
|
Hides the window's icon from from the dock/taskbar. Enabling the tray icon first
|
||||||
is recommended if using this option. This may not work on all Linux-based OSes.
|
is recommended if using this option. This may not work on Linux-based OSes.
|
||||||
`,
|
`,
|
||||||
type: "toggle",
|
type: "toggle",
|
||||||
default: false,
|
default: false,
|
||||||
@ -249,6 +252,18 @@ const OPTIONS = [
|
|||||||
default: OBSIDIAN_BASE64_ICON,
|
default: OBSIDIAN_BASE64_ICON,
|
||||||
onChange: createTrayIcon,
|
onChange: createTrayIcon,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "trayIconTooltip",
|
||||||
|
desc: `
|
||||||
|
Set a title to identify the tray/menubar icon by. The
|
||||||
|
<code>{{vault}}</code> placeholder will be replaced by the vault name.
|
||||||
|
<br>Preview: <b class="u-pop" data-preview></b>
|
||||||
|
`,
|
||||||
|
type: "text",
|
||||||
|
default: "{{vault}} | Obsidian",
|
||||||
|
postprocessor: replaceVaultName,
|
||||||
|
onChange: createTrayIcon,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "toggleWindowFocusHotkey",
|
key: "toggleWindowFocusHotkey",
|
||||||
desc: ACCELERATOR_FORMAT,
|
desc: ACCELERATOR_FORMAT,
|
||||||
@ -314,18 +329,14 @@ class SettingsTab extends obsidian.PluginSettingTab {
|
|||||||
await opt.onChange?.();
|
await opt.onChange?.();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const value = plugin.settings[opt.key] ?? opt.default ?? "";
|
||||||
if (opt.type === "toggle") {
|
if (opt.type === "toggle") {
|
||||||
setting.addToggle((toggle) => {
|
setting.addToggle((toggle) => {
|
||||||
toggle
|
toggle.setValue(value).onChange(onChange);
|
||||||
.setValue(plugin.settings[opt.key] ?? opt.default)
|
|
||||||
.onChange(onChange);
|
|
||||||
});
|
});
|
||||||
} else if (opt.type === "image") {
|
} else if (opt.type === "image") {
|
||||||
const previewImg = setting.descEl.querySelector("img[data-preview");
|
const previewImg = setting.descEl.querySelector("img[data-preview");
|
||||||
if (previewImg) {
|
if (previewImg) previewImg.src = value;
|
||||||
const src = plugin.settings[opt.key] ?? opt.default;
|
|
||||||
previewImg.src = src;
|
|
||||||
}
|
|
||||||
const fileUpload = setting.descEl.createEl("input");
|
const fileUpload = setting.descEl.createEl("input");
|
||||||
fileUpload.style.visibility = "hidden";
|
fileUpload.style.visibility = "hidden";
|
||||||
fileUpload.type = "file";
|
fileUpload.type = "file";
|
||||||
@ -348,15 +359,21 @@ class SettingsTab extends obsidian.PluginSettingTab {
|
|||||||
moment
|
moment
|
||||||
.setPlaceholder(opt.placeholder)
|
.setPlaceholder(opt.placeholder)
|
||||||
.setDefaultFormat(opt.default ?? "")
|
.setDefaultFormat(opt.default ?? "")
|
||||||
.setValue(plugin.settings[opt.key] ?? opt.default ?? "")
|
.setValue(value)
|
||||||
.onChange(onChange);
|
.onChange(onChange);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
const previewEl = setting.descEl.querySelector("[data-preview]"),
|
||||||
|
updatePreview = (value) => {
|
||||||
|
if (!previewEl) return;
|
||||||
|
previewEl.innerText = opt?.postprocessor(value) ?? value;
|
||||||
|
};
|
||||||
|
updatePreview(value);
|
||||||
setting.addText((text) => {
|
setting.addText((text) => {
|
||||||
text
|
text
|
||||||
.setPlaceholder(opt.placeholder)
|
.setPlaceholder(opt.placeholder)
|
||||||
.setValue(plugin.settings[opt.key] ?? opt.default ?? "")
|
.setValue(value)
|
||||||
.onChange(onChange);
|
.onChange((value) => [onChange(value), updatePreview(value)]);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user