From b58fb1fb74a76af45c0fd150f57cf58ae55d652e Mon Sep 17 00:00:00 2001 From: Andrea Giammarchi Date: Sun, 24 Oct 2021 02:39:10 +0200 Subject: [PATCH] Improve ArchLinux support (#265) --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 72db5b5..290b4ec 100644 --- a/index.js +++ b/index.js @@ -285,7 +285,7 @@ const apps = {}; defineLazyProperty(apps, 'chrome', () => detectPlatformBinary({ darwin: 'google chrome', win32: 'chrome', - linux: ['google-chrome', 'google-chrome-stable'] + linux: ['google-chrome', 'google-chrome-stable', 'chromium'] }, { wsl: { ia32: '/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe', @@ -304,7 +304,7 @@ defineLazyProperty(apps, 'firefox', () => detectPlatformBinary({ defineLazyProperty(apps, 'edge', () => detectPlatformBinary({ darwin: 'microsoft edge', win32: 'msedge', - linux: 'microsoft-edge' + linux: ['microsoft-edge', 'microsoft-edge-dev'] }, { wsl: '/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe' }));