slitaz-tools view tinyutils/browser @ rev 762

Added tag 5.0 for changeset 592ca2af912a
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 02 16:03:49 2012 +0200 (2012-05-02)
parents
children 0803ec7203da
line source
1 #!/bin/sh
2 # Lauch SliTaz default Web browser.
3 #
4 . /etc/slitaz/applications.conf
6 USER_CONFIG="$HOME/.config/slitaz/applications.conf"
7 [ -f $USER_CONFIG ] && . $USER_CONFIG
9 $BROWSER $@ &
11 exit 0