diff --git a/app/lib/window.ts b/app/lib/window.ts index a73386b102..5523d2c7d8 100644 --- a/app/lib/window.ts +++ b/app/lib/window.ts @@ -392,14 +392,15 @@ export class Window { return } - const symbolColor: string = theme.foreground - - this.window.setTitleBarOverlay( - { - symbolColor: symbolColor, - height: 32, - }, - ) + if (process.platform === 'win32') { + const symbolColor: string = theme.foreground + this.window.setTitleBarOverlay( + { + symbolColor: symbolColor, + height: 32, + }, + ) + } }) ipcMain.on('window-set-title', (event, title) => {