How to open a new Firefox window with Terminal

2

3

I am running Firefox v10.0.1 with OS X Lion v10.7.3

From the Apple dock, you can right-click on Firefox icon and choose NEW and a new Firefox window will open.

From terminal, I have tried

    open -n /Applications/Firefox.app

but it says (assuming Firefox is already open)

A copy of Firefox is already open. Only one copy of Firefox can be open at a time.

How can you open a New Window in Firefox from the Terminal's command line?

jsherk

Posted 2012-03-03T04:39:49.630

Reputation: 461

slhck's answer below is correct and I accepted it, but here is related question and answer: http://superuser.com/questions/397277/how-to-run-bash-profile-function-from-desktop-alias-command-file-on-osx-lion/397297

– jsherk – 2012-03-08T05:49:04.977

Answers

5

You need to use AppleScript for this. The ideal solution would be to use a built-in function from Firefox, but it doesn't offer one – its AppleScript dictionary is very limited. So we have to emulate keyboard shortcuts.

Open up your ~/.bash_profile and add the following shell function:

function firefox-window() {
/usr/bin/env osascript <<-EOF
tell application "System Events"
    if (name of processes) contains "Firefox" then
        tell application "Firefox" to activate
        keystroke "n" using command down
    else
        tell application "Firefox" to activate
    end if
end tell
EOF
}

This will call osascript, which executes AppleScript commands, then activate Firefox, and then emulate a ⌘N keypress – but only if it's already running. If not, Firefox will just be opened, so you don't get two new windows. Also, you can exchange "n" to "t" to get new tabs, obviously.

Save the ~/.bash_profile file and enter source ~/.bash_profile to reload it. Then, just call the following function whenever you need a new Firefox window:

firefox-window

Of course, feel free to change the function's name.

If you want to be able to pass an URL argument from the command line, see this answer: How to open a new Firefox window with URL argument.


~/.bash_profile is where all your custom functions should reside. If the file doesn't exist, you can just create it.

Shell functions are more powerful than aliases, as for example they allow you to use arguments too. You could theoretically pass the URL of the new window too, and then tell Firefox to open it with the OpenURL or Get URL command – but I haven't tried them.

Regarding the syntax used: The <<-EOF is a here document, making it easier to pass multi-line input to osascript. The input will be parsed until the EOF marker appears again.

slhck

Posted 2012-03-03T04:39:49.630

Reputation: 182 472

Ok, I will give this a try. Will this also work to start Firefox if it is not running, or is this only if it is already running? – jsherk – 2012-03-03T23:13:12.537

Am receiving this when trying to reload: -bash: /Users/myname/.bash_profile: line 9: syntax error: unexpected end of file – jsherk – 2012-03-03T23:17:16.413

This will also work if Firefox is not running, although it will then open two windows – it could be tweaked not to do this, of course. What's your complete bash_profile, can you post it somewhere (Pastebin, etc.)? I'm guessing there's a missing quote. Check if you typed everything correctly. – slhck – 2012-03-03T23:22:47.983

Here you go: www.iwebss.com/test/bashprofile.txt – jsherk – 2012-03-03T23:40:38.850

Sorry, it must have been an indentation error. You shouldn't indent EOF. See my updated post! – slhck – 2012-03-03T23:42:00.457

I updated the script so it works better when Firefox isn't running. – slhck – 2012-03-04T08:47:46.700

Awesome! Just tried it and it works great! Thanks – jsherk – 2012-03-05T21:55:00.617

0

I think the matter is similar with opening a new tab from command line, so I would like to point out this thread where someone dealt with a similar issue using an AppleScript.

on firefoxRunning()
    tell application "System Events" to (name of processes) contains "Firefox"
end firefoxRunning

on run argv

    if (firefoxRunning() = false) then
        do shell script "open -a Firefox " & (item 1 of argv)
    else
        tell application "Firefox" to activate

        tell application "System Events"
            keystroke "t" using {command down}
            keystroke item 1 of argv & return
        end tell
    end if
end run

What's more on Mojave I get an error when executing the code from .bash_profile : System Events got an error: my cool script is not allowed to send keystrokes. (1002)

matthiasbe

Posted 2012-03-03T04:39:49.630

Reputation: 131