Today I was faced with the challenge of having to refresh a Chrome browser window on a networked Ubuntu machine via SSH. (Admittedly, I could have walked over to the computer in question and hit F5, but where’s the fun in that?) This seemed like it would be simple, but I immediately ran into problems.
Opening Chrome
My first thought was to see if Google Chrome’s command-line interface has any support for interacting with existing windows, but unfortunately it doesn’t. Oh well - if the browser is set to remember the last opened tabs, then it should just be a matter of closing and reopening the window: once I SSH in,
should be all it takes, right?
Well, not quite:
Hmm, Chrome refuses to start because it can’t find a display. Since we’re logged in remotely, we’ll need to manually set the display to be the one that is currently being used:
After this, running google-chrome
works. So far, so good.
Now comes the next problem: the original window was full screen. Could I make the new instance be full screen as well?
Making it full screen
Suprisingly, there is no command-line switch for full-screen mode! The closest I could find was –app, which didn’t seem to do anything. Well, if we can’t start the browser in full screen, can we at least make the window full screen after it starts?
Here the xdotool keyboard/mouse simulator package can come in handy - we can use it to mimic an F11 keypress as follows:
Now all that’s left is the matter of timing: we should only run xdotool
once Chrome’s window has opened, so let’s give it a few seconds:
Putting it all together
The full sequence of commands to run is:
Since I don’t want to have to enter this every time I need to refresh the browser, I saved this into a shell file on the remote machine at ~/local/bin/google-chrome-fullscreen
and assigned appropriate permissions. Now, to refresh chrome on that machine, all I need to run is:
(The > /dev/null
is necessary, apparently because otherwise the SSH session hangs while waiting for output.)
What about other browsers?
Similar method should work for other browsers. A generic browser-refresh script that works for me is:
where the usage is
I’ve tried this with Firefox and Chromium and it seems to work fine, but your mileage may vary.
Comments
blog comments powered by Disqus