From 89b1a5fbcecad440aa763135f6cd8eadc55e3b68 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 18 Mar 2024 11:30:19 +0100 Subject: [PATCH] Use local Firefox installation Installing Firefox at this location avoids annoyances with admin privileges as Firefox regularly wants to update itself on launch. --- Moonlander Window Manager.ahk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Moonlander Window Manager.ahk b/Moonlander Window Manager.ahk index e02077e..77cfe16 100644 --- a/Moonlander Window Manager.ahk +++ b/Moonlander Window Manager.ahk @@ -18,7 +18,8 @@ TERMINAL_CMD := " )" BROWSER_WIN:= "ahk_class MozillaWindowClass" -BROWSER_CMD:= "C:\Program Files\Mozilla Firefox\firefox.exe" +; BROWSER_CMD:= "C:\Program Files\Mozilla Firefox\firefox.exe" +BROWSER_CMD:= "C:\Users\fernando.schauenburg\AppData\Local\Mozilla\Firefox\firefox.exe" ; Returns the rectangle (position & size) of a given monitor. MonitorGetRect(N)