Navigation

projects
Smalltalk
Squeak
Webdesign
FreeBSD
GIS
misc


Login
Username:
Password:


Danke

Danke Chris


Du bist hier   >   home   >   projects   >   misc

misc

profile:

Der Daemon in xpenguins:

getting firefox and thunderbird to play together nice:

  • thunderbird: user.js
    // use a dispatcher script for http links
       user_pref("network.protocol-handler.app.http", "~/bin/newUrl");
    
  • firefox: user.js
    // use a dispatcher script for mailto links
       user_pref("network.protocol-handler.external.mailto", true);
       user_pref("network.protocol-handler.app.mailto", "/home/chbu/bin/newMail");
       // unfortunatly firefox cannot read relative links
    
  • newMail
    #!/bin/sh
    link=`echo "$1" | sed 's/^mailto://'`
    thunderbird -remote 'mailto('"$link"')' || thunderbird -mail "$1" &
    
  • newUrl
    #!/bin/sh
    firefox -remote 'openURL('"$1"',new-tab)' || firefox "$1" &
    
(And restart thunderbird and firefox!)

Disclaimer

Sitemap

hosted by: Beine Computer - www.beine-computer.de - gerrit@beine-computer.de
Webmaster: Chris Burkert - www.chrisburkert.de - chris@chrisburkert.de

Auf alle Inhalte und Gestaltungen gelinkter Seiten, die nicht im Geltungsbereich dieser Website liegen und die verlinkten Seiten selbst, habe ich keinerlei Einfluss und distanziere mich hiermit ausdrücklich.

© Copyright by Chris Burkert

www.whysmalltalk.com   ..::..     ..::..   www.squeak.org