![]() |
My firefox script
Hi. I use mozilla firefox on linux. It's a great browser, but the *nix
version has an annoying problem, that it won't let you open a new instance from the desktop if the browser is already running. So, in my amateurish way I wrote a little script to fix that. Here it is...... #! /usr/bin/python #fox_launch.py import sys, os if len(sys.argv) > 1: URL = str(sys.argv[1]) else: URL = "" a = os.popen("ps ax |grep firefox") detect_fox = a.read() if detect_fox.count("firefox-bin") > 0: os.popen2("firefox -remote 'openURL(" + URL + ",new-window)'") else: os.popen2("firefox " + URL) |
Re: My firefox script
> Hi. I use mozilla firefox on linux. It's a great browser, but the *nix > version has an annoying problem, that it won't let you open a new > instance from the desktop if the browser is already running. search freshmeat.net for "MSS" -- Дамјан (jabberID:damjan@bagra.net.mk) Where do you think you're going today? |
| All times are GMT. The time now is 09:48 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.