slitaz-tools view tinyutils/browser @ rev 460

hwsetup: install usbutils, halinfo only if needed (thanks claudinei)
author Rohit Joshi <jozee@slitaz.org>
date Wed Mar 24 05:15:28 2010 -0400 (2010-03-24)
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