It is currently January 26th, 2021, 9:14 pm
Help with creating, editing & fixing problems with skins
-
Harshsrcc
- Posts: 17
- Joined: December 14th, 2020, 3:04 am
Post
by Harshsrcc »
I'm trying to make an icon launch firefox in incognito mode, with:
Code: Select all
LeftMouseUpAction=["C:\Program Files\Firefox Developer Edition\firefox.exe --incognito"]
This doesn't work.
Closing quotes before '--incognito' opens regular firefox window
Code: Select all
LeftMouseUpAction=["C:\Program Files\Firefox Developer Edition\firefox.exe" --incognito]
Edit: Nevermind. Apparently, --incognito works only with chrome.
-
Harshsrcc
- Posts: 17
- Joined: December 14th, 2020, 3:04 am
Post
by Harshsrcc »
I've figured it out. Have to use -private-window with Firefox, instead of --incognito
Code: Select all
"C:\Program Files\Firefox Developer Edition\firefox.exe" -private-window