slitaz-tools view tinyutils/browser @ rev 813

Current state, features stabilized and open for bugfixes and translations.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Sep 09 03:27:04 2013 +0300 (2013-09-09)
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