ich hab ein problem mit meinem mozilla (ist auch auf der uni so): wenn ich schon ein fenster offen hab und mozilla nochmal starte, sagt er mir, ich soll das profil auswählen. da es nur default gibt, wähl ich das aus, daraufhin sagt er mir dann, dass das profil nicht verwenden kann, weil es zur zeit verwendet wird. wenn ein link in einem neuen fenster geöffnet wir, besteht das problem nicht. wenn ich eine lokal gespeicherte datei mit mozilla öffnen will aber schon. was muss ich da ändern?
profile in mozilla
-
-
Nix, tus einfach nicht, und öffne neue Mozilla-Fenster über das alte Fenster...
-
Es ist nicht vorgesehen, dass du, wenn du einfach ein neues Fenster öffnen willst, eine neue Instanz von Mozilla startest. Anders als bei Windows heißt hier der Klick auf ein Icon, dass das damit assoziierte Programm gestartet wird. Du könntest natürlich ein Wrapperscript schreiben/verwenden (es gibt eh ein paar), das so einen unnötigen Start einer neuen Instanz abfängt und stattdessen ein neues Fenster oder ein neues Tab öffnet.
LICQ hat solche coolen Scripts...sind zwar dafür gedacht, in einem Messagefenster aufscheinende URLs klicken zu können, aber grundsätzlich ist es leicht, das Programm zu zweckentfremden.
Bash
Alles anzeigen#!/bin/sh # # by Nicos Gollan <gtdev@spearhead.de>, 2003-01-31 # # Used to open URLs in Mozilla, using Mozillas 'remote' function # (see [url]http://www.mozilla.org/unix/remote.html[/url]) to avoid opening # new browser windows all over the place. Default is to open the # requested site in a new tab. Configuration can be done via # environment variables. # # Recognized environment variables: # - VURL_MOZILLA # Your mozilla binary. Defaults to 'mozilla' # - VURL_HOME # Your homepage. Defaults to 'www.linux.org'. This page is # opened if this script is called without parameters # - VURL_OPENMODE # Method of opening the URL. # "new-tab" - opens URL in a new tab (default) # "new-window" - opens URL in a new window # "current" - opens URL in the current window # if [ -z '${VURL_MOZILLA}' ]; then MOZILLA=mozilla else MOZILLA=${VURL_MOZILLA} fi if [ -z '${VURL_HOME}' ]; then URLHOME='http://www.linux.org' else URLHOME="${VURL_HOME}" fi if [ -z '${VURL_OPENMODE}' ]; then OPENMODE=new-tab else OPENMODE="${VURL_OPENMODE}" fi if [ '$1' = '' ] ; then URL=$URLHOME else URL=$1 fi if [ '${OPENMODE}' = 'current' ]; then OPENSTRING="${URL}" else OPENSTRING="${URL},${OPENMODE}" fi # check if mozilla is running if [ -z '`${MOZILLA} -remote ping\(\) >& /dev/stdout`' ]; then # mozilla is running, open the URL there ${MOZILLA} -remote openurl\(${OPENSTRING}\) & else # not running, open a new browser ${MOZILLA} ${URL} & fi
-
danke [Blockierte Grafik: http://hades.gothic.at/iforum/images/smilies/thumb.gif]
funktioniert bestens! genau so wollt ich das haben [Blockierte Grafik: http://hades.gothic.at/iforum/images/smilies/verycool.gif] -
Geht doch nichts über coole Shellscripts
-
also ich weiß nicht ob es mit allen version von mozilla funktioniert, aber bei neueren versionen funktioniert es wenn man mozilla mit "mozilla %u" startet.
also bei dem starter (icon) noch ein %u bei dem auszuführenden befehl einfügen.
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!