user13908778
user13908778

Reputation:

How to start Firefox with a empty page via terminal under Linux, despite default page configured in FF

How to start Firefox with a empty page via terminal under Linux, despite default page configured in FF

Envirement:

What I have found is the follow for use on terminal:

Open new firefox with in browser configured default startpage:

firefox

Open new firefox with one webpage:

firefox --new-window https://stackoverflow.com

How to start Firefox with a empty page via terminal under Linux, despite default page configured in FF. I dont looking for, how to open a new blank Tab of FF by Terminal.

It can be, a blank page have a adress too, a I didn find like this.

Upvotes: 1

Views: 653

Answers (1)

Jorenar
Jorenar

Reputation: 2884

The "URL" of empty page in Firefox is about:blank. You just need to execute

firefox about:blank

Analogous, to open new window with blank page:

firefox --new-window about:blank

Upvotes: 1

Related Questions