From 7b3cee24cc7438eef040270b0464cde932e98ffb Mon Sep 17 00:00:00 2001 From: Vadim Zyamalov Date: Fri, 5 Sep 2025 21:53:22 +0300 Subject: [PATCH] Allow Firefox installed as non-admin (#423) --- install.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.py b/install.py index 0015f23..da014f0 100644 --- a/install.py +++ b/install.py @@ -51,6 +51,10 @@ INSTALLATIONS_TO_CHECK = [ "command": [str(Path("C:/Program Files/Mozilla Firefox/firefox"))], "root": Path(getenv("APPDATA") or "").joinpath("Mozilla/Firefox").resolve(), }, + { + "command": [str(Path(getenv("LOCALAPPDATA") or "").joinpath("Mozilla Firefox/firefox").resolve())], + "root": Path(getenv("APPDATA") or "").joinpath("Mozilla/Firefox").resolve(), + }, # linux { "command": ["firefox"],