Skip to content

Commit e25c92f

Browse files
fix waterfox support on macOS (#2080)
What it says on the tin. Very simple fix, just requires adding the app bundle information to `firefox.py`. Also added an alternate capitalization to the 'simple' app identifiers just in case. If someone who daily drives Windows and Linux can double-check both of those are working as well that'd be good; any fixes needed there could be added to this as well (but I think the previous Waterfox pr should've worked fine for both of those?). Co-authored-by: Nicholas Riley <com-github@sabi.net>
1 parent 66f2ef7 commit e25c92f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

apps/firefox/firefox.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
apps.firefox = "app.name: firefox-esr"
1212
apps.firefox = "app.name: LibreWolf"
1313
apps.firefox = "app.name: waterfox"
14+
apps.firefox = "app.name: Waterfox"
1415
apps.firefox = r"""
1516
os: windows
1617
and app.name: Firefox
@@ -21,6 +22,11 @@
2122
os: mac
2223
and app.bundle: org.mozilla.firefox
2324
"""
25+
apps.firefox = """
26+
os: mac
27+
and app.bundle: net.waterfox.waterfox
28+
"""
29+
2430

2531
# Make the context match more specifically than anything else. This is important, eg. to
2632
# override the browser.go_home() implementation in tags/browser/browser_mac.py.

0 commit comments

Comments
 (0)