|
| misc |
profile:
- A little toolbased on Gnuplot to create heigth profiles
- Download:
Der Daemon in xpenguins:
- Stable Download:
- Devel Download:
- 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!) |
|
|