slitaz-tools view tinyutils/terminal @ rev 431

Auto-install non-free firmware (to avoid wifi confusion for users)
author Rohit Joshi <jozee@slitaz.org>
date Mon Feb 22 13:05:37 2010 +0000 (2010-02-22)
parents
children b265b9fdd138
line source
1 #!/bin/sh
2 # Lauch SliTaz default X Terminal.
3 #
4 . /etc/slitaz/applications.conf
6 USER_CONFIG="$HOME/.config/slitaz/applications.conf"
7 [ -f $USER_CONFIG ] && . $USER_CONFIG
9 $TERMINAL $@ &
11 exit 0