Skip to content

Commit

Permalink
Improve ArchLinux support (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
WebReflection committed Oct 24, 2021
1 parent 7908a58 commit b58fb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'
}));
Expand Down

0 comments on commit b58fb1f

Please sign in to comment.