slitaz-tools view tinyutils/editor @ rev 764

tazinst: remove (cooking) from grub menu template
author Richard Dunbar <mojo@slitaz.org>
date Tue May 15 06:41:31 2012 +0000 (2012-05-15)
parents edffcc2c8ef5
children a007d5fe66f8
line source
1 #!/bin/sh
2 # Launch SliTaz default Text Editor.
3 #
4 . /etc/slitaz/applications.conf
6 USER_CONFIG="$HOME/.config/slitaz/applications.conf"
7 [ -f $USER_CONFIG ] && . $USER_CONFIG
9 $EDITOR $@ &
11 exit 0