From 3af42f6be13197eba117b7f6bf0f6a1769f420af Mon Sep 17 00:00:00 2001 From: Lennart Ochel Date: Mon, 8 Dec 2025 10:30:57 +0100 Subject: [PATCH] Fix omarchy-launch-browser for microsoft-edge (#3763) --- bin/omarchy-launch-browser | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/omarchy-launch-browser b/bin/omarchy-launch-browser index d6ae00cb..adad4970 100755 --- a/bin/omarchy-launch-browser +++ b/bin/omarchy-launch-browser @@ -5,6 +5,8 @@ browser_exec=$(sed -n 's/^Exec=\([^ ]*\).*/\1/p' {~/.local,~/.nix-profile,/usr}/ if [[ $browser_exec =~ (firefox|zen|librewolf) ]]; then private_flag="--private-window" +elif [[ $browser_exec =~ edge ]]; then + private_flag="--inprivate" else private_flag="--incognito" fi