diff --git a/src/main.ts b/src/main.ts index da1a34e..29e4df0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,6 +8,12 @@ import { initTray } from "./native/tray"; import { checkForUpdates } from "./native/updater"; import { BUILD_URL, createMainWindow, mainWindow } from "./native/window"; +// Linux GPU sandbox causes fatal crash on some AMD/CachyOS setups +if (process.platform === "linux") { + app.commandLine.appendSwitch("disable-gpu-sandbox"); + app.commandLine.appendSwitch("disable-software-rasterizer"); +} + // Squirrel-specific logic // create/remove shortcuts on Windows when installing / uninstalling // we just need to close out of the app immediately diff --git a/src/native/discordRpc.ts b/src/native/discordRpc.ts index 25b4d62..0e45307 100644 --- a/src/native/discordRpc.ts +++ b/src/native/discordRpc.ts @@ -19,10 +19,10 @@ export async function initDiscordRpc() { state: "mithraic.space", details: "Chatting with others", largeImageKey: "qr", - largeImageText: "Join Stoat!", + largeImageText: "Join Sanctum!", buttons: [ { - label: "Join Stoat", + label: "Join Sanctum", url: "https://mithraic.space/", }, ],