From 26e7af0a1aba6abc84b90cf3f7e7ed99828988f1 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Thu, 6 Jul 2023 14:41:25 -0400 Subject: [PATCH] move dock hide to on ready --- app/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/index.ts b/app/src/index.ts index 31e54fec5..c9d05837c 100644 --- a/app/src/index.ts +++ b/app/src/index.ts @@ -6,6 +6,7 @@ import * as fs from 'fs' require('@electron/remote/main').initialize() let tray: Tray | null = null + const createSystemtray = () => { let brightModeIconPath = path.join(__dirname, '..', '..', 'assets', 'ollama_icon_dark_16x16.png') let darkModeIconPath = path.join(__dirname, '..', '..', 'assets', 'ollama_icon_bright_16x16.png')