It seems we have a hard time defining a default browser and a default e-mail reader under KDE. For instance when you install a new browser, when you click a link inside KDE, it still opens the URL in Konqueror. Sames for for e-mail and KMail...
Do you have an idea to solve this problem?
I have come up with a solution. Please let me know what you think. We could define 2 system variable2 during start up, for instance:
|
Code:
|
BROWSER=OPERA; export BROWSER
MAILCLIENT=OPERA; export MAILCLIENT |
These system variables could be altered by a nice GUI in the K Control Center. Then, we would create shell scripts under /usr/local/bin:
|
Code:
|
/usr/local/bin/browser
/usr/local/bin/mailclient |
Each of these scripts would grab the system variable and pass parameters over to the default browser or mail client. For instance, if you type 'browser
http://www.google.com' and if your default browser is set to "Opera", then this shell script will execute:
This way, just use the generic "browser" application to open an URL, and it'll use your default browser. Same goes for e-mail, and maybe other applications...
What do you think? :roll:
Do you have a better idea?