slitaz-tools view tinyutils/terminal @ rev 542

Added tag 4.0.2 for changeset f701389ed812
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jan 23 00:57:30 2011 +0000 (2011-01-23)
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