Open URL to present browser

Ralf Mardorf ralf.mardorf at alice-dsl.net
Thu Sep 26 10:51:25 CEST 2013


On Thu, 2013-09-26 at 09:15 +0200, Xan wrote:
> - 1) opening browser
> - 2) if no openning browser, then his favorite...?

Replace the default browser with a script, similar to the below script.

[rocketmouse at archlinux ~]$ cat default.browser.sh
#! /bin/bash

pidof midori
case $? in
  1) firefox $*;;
  *) midori $*;;
esac
exit



More information about the Xfce mailing list