Am Montag, 28. Juni 2004 11:28 schrieb Richard Uhlig: < Jetzt habe ich nur nicht das Icon imProgrammmenü. Kann man das auch noch < irgendwie finden? < Richard < Na freilich! Einen Rechtsklick auf K-Menü dann auf Internet -> Webbrowser ...neues Element anlegen ..kannst du nennen wie du willst ...als Befehl mußt du dann noch in das Firefox Verzeichnis wechseln und die Ausführbare Datei angeben(anklicken). Abspeichern nicht vergessen. hmm...wart mal..ich hab da noch was nettes auf dem WWW für den Firefox Das Script hab ich dann einfach "mozi" genannt und nach /opt kopiert. Das Script bewirkt, dass man Firefox so oft starten kann wie man will. Es ist von der Linux-Einsteiger Website. ..ebenfalls irgendwoher kopiert...:-) ######################################################################### Firebird Browser mehrmals starten Nachdem ich den Firebird für Linux von gedownloaded (grml denglisch) und installiert (nur entpacken) habe, mußte ein Skript her, welches mehrere Instanzen vom Firebird zuläßt. In den Linuxforen habe ich ein für mich passendes Skript gefunden. Das Skript abspeichern und ausführbar machen und eventuell noch einen Link nach /usr/bin mit ln -s /pfad/zu/dem/skript /usr/bin/firebird Jetzt läßt sich das ganze (unter KDE) mit F2 und firebird starten. Das Skript findet sich... Hier das Skript: #!/bin/sh # author - David Patton # seriously modified by - Carlos Urbieta Cabrera # reworked by - Carlos Urbieta Cabrera again # THIS SOFTWARE HAS THE GPL LICENSE, IF YOU USE THIS SOFTWARE, YOU ARE # AGREEING TO ITS LICENSE?S TERMS, SO AT LEAST READ IT! 8D # http://www.gnu.org/licenses/licenses.html#TOCGPL #*** # Configurarion starts here # Where is phoenix? PHOENIX=/usr/lib/mozilla-firebird/MozillaFirebird # Default URL when not set at command line? DEFAULT="" # Configurarion stops here #*** URL="$@" if [ "$URL" = "" ]; then URL="$DEFAULT" fi $PHOENIX -remote "ping()" # $? = false if running, true if not if [ $? = 0 ] ; then # 'new-tab' also exists, but it # will not bring the browser # ontop, so its not that fun. # People may not realize that # there is a new tab on their # current browser 8) -Carlos $PHOENIX -remote openURL"($URL,new-window)" else $PHOENIX $URL fi exit #*** #Changelog: # # 2003/02/20 # * Major upgrade, now using a much simpler and cleaner method # but only works on 1+ versions of mozilla (not sure) where # ping() is supported. # Now it has the option to set up a default URL and overides # it if another URL is declared when invoking the command 8) # This last upgrade was made possible by tips from Jan Wilson # at the ltsp mailing list 8) # # # 2003/01/24 # * Davids script used a simple ps -e without checking for users, so # his was monouser, this new version is multiuser, propper for # the linux terminal server project (hey guys!) 8) -Carlos # # 2003/01/22 # Yes this script is big enough for a change log! 8) -Carlos # #*** #TODO # # Knock yourself out, send your changes back to me, you agreed to it # remember? 8) # #*** #################################################################### -- Gruß Gunnar