aboutsummaryrefslogtreecommitdiff
path: root/src/modules/kill.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/kill.js')
-rw-r--r--src/modules/kill.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/kill.js b/src/modules/kill.js
index 43eda23..5d03218 100644
--- a/src/modules/kill.js
+++ b/src/modules/kill.js
@@ -33,6 +33,12 @@ kill.origin = async () => {
let origin = await kill("Origin.exe");
let eadesktop = await kill("EADesktop.exe");
+ // these should be Linux only, and the above shouldn't succeed if
+ // these don't succeed, so we shouldn't have to check whether these
+ // actually succeeded or not
+ await kill("CrBrowserMain");
+ await kill("EABackgroundSer");
+
if (origin || eadesktop) {
return true;
}