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