mirror of
https://github.com/heyman/heynote.git
synced 2024-11-21 15:33:14 +01:00
FIX: fixed trayicon on linux not appearing (#136)
* Fix trayicon on linux not appearing --------- Co-authored-by: Fernando Pinedo <fernando.pinedo@luizalabs.com> Co-authored-by: Jonatan Heyman <jonatan@heyman.info>
This commit is contained in:
parent
554e04ea67
commit
d055db1831
@ -6,7 +6,7 @@ import fs from "fs"
|
||||
import { menu, getTrayMenu } from './menu'
|
||||
import { WINDOW_CLOSE_EVENT, SETTINGS_CHANGE_EVENT } from '../constants';
|
||||
import CONFIG from "../config"
|
||||
import { isDev, isMac, isWindows } from '../detect-platform';
|
||||
import { isDev, isLinux, isMac, isWindows } from '../detect-platform';
|
||||
import { initializeAutoUpdate, checkForUpdates } from './auto-update';
|
||||
import { fixElectronCors } from './cors';
|
||||
import { loadBuffer, contentSaved } from './buffer';
|
||||
@ -145,6 +145,8 @@ function createTray() {
|
||||
let img
|
||||
if (isMac) {
|
||||
img = nativeImage.createFromPath(join(process.env.PUBLIC, "iconTemplate.png"))
|
||||
} else if (isLinux) {
|
||||
img = nativeImage.createFromPath(join(process.env.PUBLIC, 'favicon-linux.png'));
|
||||
} else{
|
||||
img = nativeImage.createFromPath(join(process.env.PUBLIC, 'favicon.ico'));
|
||||
}
|
||||
|
BIN
public/favicon-linux.png
Normal file
BIN
public/favicon-linux.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in New Issue
Block a user