1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 07:30:47 +05:30

install.py: add support for macOS (#434)

This commit is contained in:
balacij
2025-10-22 20:54:50 -04:00
committed by GitHub
parent 9f3e90876f
commit 9d7e6acb9c
+5
View File
@@ -65,6 +65,11 @@ INSTALLATIONS_TO_CHECK = [
"command": ["flatpak", "run", "org.mozilla.firefox"], "command": ["flatpak", "run", "org.mozilla.firefox"],
"root": Path.home().joinpath(".var/app/org.mozilla.firefox/.mozilla/firefox").absolute(), "root": Path.home().joinpath(".var/app/org.mozilla.firefox/.mozilla/firefox").absolute(),
}, },
# macOS
{
"command": ["/Applications/Firefox.app/Contents/MacOS/firefox"],
"root": Path.home().joinpath("Library/Application Support/Firefox").absolute(),
},
] ]