slitaz-tools view tinyutils/browser @ rev 386

tazx: add 'text' menu entry
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 18 13:09:01 2009 +0200 (2009-09-18)
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