mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 03:59:03 +00:00
theoretically fix #27: call app.dock.hide() on mac
+ restore hidden taskbar icons on plugin cleanup/disable
This commit is contained in:
parent
b8326526ef
commit
4c0c3da898
22
main.js
22
main.js
@ -100,12 +100,16 @@ const onWindowClose = (event) => event.preventDefault(),
|
|||||||
window.removeEventListener("beforeunload", onWindowUnload, true);
|
window.removeEventListener("beforeunload", onWindowUnload, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
const setHideTaskbarIcon = () => {
|
const hideTaskbarIcons = () => {
|
||||||
getWindows().forEach((win) => {
|
getWindows().forEach((win) => win.setSkipTaskbar(true));
|
||||||
win.setSkipTaskbar(plugin.settings.hideTaskbarIcon);
|
if (process.platform === "darwin") app.dock.hide();
|
||||||
});
|
|
||||||
},
|
},
|
||||||
setLaunchOnStartup = () => {
|
showTaskbarIcons = () => {
|
||||||
|
getWindows().forEach((win) => win.setSkipTaskbar(false));
|
||||||
|
if (process.platform === "darwin") app.dock.show();
|
||||||
|
};
|
||||||
|
|
||||||
|
const setLaunchOnStartup = () => {
|
||||||
const { launchOnStartup, runInBackground, hideOnLaunch } = plugin.settings;
|
const { launchOnStartup, runInBackground, hideOnLaunch } = plugin.settings;
|
||||||
app.setLoginItemSettings({
|
app.setLoginItemSettings({
|
||||||
openAtLogin: launchOnStartup,
|
openAtLogin: launchOnStartup,
|
||||||
@ -248,7 +252,10 @@ const OPTIONS = [
|
|||||||
`,
|
`,
|
||||||
type: "toggle",
|
type: "toggle",
|
||||||
default: false,
|
default: false,
|
||||||
onChange: setHideTaskbarIcon,
|
onChange() {
|
||||||
|
if (plugin.settings.hideTaskbarIcon) hideTaskbarIcons();
|
||||||
|
else showTaskbarIcons();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: "createTrayIcon",
|
key: "createTrayIcon",
|
||||||
@ -410,10 +417,10 @@ class TrayPlugin extends obsidian.Plugin {
|
|||||||
plugin = this;
|
plugin = this;
|
||||||
createTrayIcon();
|
createTrayIcon();
|
||||||
registerHotkeys();
|
registerHotkeys();
|
||||||
setHideTaskbarIcon();
|
|
||||||
setLaunchOnStartup();
|
setLaunchOnStartup();
|
||||||
observeWindows();
|
observeWindows();
|
||||||
if (settings.runInBackground) interceptWindowClose();
|
if (settings.runInBackground) interceptWindowClose();
|
||||||
|
if (settings.hideTaskbarIcon) hideTaskbarIcons();
|
||||||
if (settings.hideOnLaunch) {
|
if (settings.hideOnLaunch) {
|
||||||
this.registerEvent(this.app.workspace.onLayoutReady(hideWindows));
|
this.registerEvent(this.app.workspace.onLayoutReady(hideWindows));
|
||||||
}
|
}
|
||||||
@ -435,6 +442,7 @@ class TrayPlugin extends obsidian.Plugin {
|
|||||||
log(LOG_CLEANUP);
|
log(LOG_CLEANUP);
|
||||||
unregisterHotkeys();
|
unregisterHotkeys();
|
||||||
allowWindowClose();
|
allowWindowClose();
|
||||||
|
showTaskbarIcons();
|
||||||
destroyTray();
|
destroyTray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user