slitaz-tools view tinyutils/browser @ rev 838

Tiny edits
author Paul Issott <paul@slitaz.org>
date Tue Mar 18 19:31:26 2014 +0000 (2014-03-18)
parents edffcc2c8ef5
children a007d5fe66f8
line source
1 #!/bin/sh
2 # Launch 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