We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 062b536 commit ccff1acCopy full SHA for ccff1ac
src/main/index.ts
@@ -60,6 +60,9 @@ function init() {
60
// WidgetLayering (Vencord Added): Fix DevTools context menus https://github.com/electron/electron/issues/38790
61
disabledFeatures.push("WinRetrieveSuggestionsOnlyOnDemand", "HardwareMediaKeyHandling", "MediaSessionService");
62
63
+ // Support TTS on Linux using speech-dispatcher
64
+ app.commandLine.appendSwitch("enable-speech-dispatcher");
65
+
66
app.commandLine.appendSwitch("enable-features", [...new Set(enabledFeatures)].filter(Boolean).join(","));
67
app.commandLine.appendSwitch("disable-features", [...new Set(disabledFeatures)].filter(Boolean).join(","));
68
0 commit comments