From 67ae98fb185f73980f5f5016da4017abe3af61f6 Mon Sep 17 00:00:00 2001 From: Oleh Polisan Date: Sat, 18 May 2024 01:08:56 +0300 Subject: [PATCH] added process title --- src/main/keybinds.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/keybinds.ts b/src/main/keybinds.ts index 1a8b578..242f098 100644 --- a/src/main/keybinds.ts +++ b/src/main/keybinds.ts @@ -9,6 +9,7 @@ import { IpcEvents } from "shared/IpcEvents"; import { mainWin } from "./mainWindow"; export function initKeybinds() { + process.title = "Vesktop"; process.on("SIGPIPE", async () => { mainWin.webContents.send(IpcEvents.TOGGLE_SELF_MUTE); });