From 9d7e6acb9c1151835ea667593379b8253ca80fe2 Mon Sep 17 00:00:00 2001 From: balacij <1627302+balacij@users.noreply.github.com> Date: Wed, 22 Oct 2025 20:54:50 -0400 Subject: [PATCH] install.py: add support for macOS (#434) --- install.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.py b/install.py index da014f0..82829df 100644 --- a/install.py +++ b/install.py @@ -65,6 +65,11 @@ INSTALLATIONS_TO_CHECK = [ "command": ["flatpak", "run", "org.mozilla.firefox"], "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(), + }, ]