1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/bin/sh
# file types supported: .ini, .demo
EMC_BIN_DIR=@EMC2_BIN_DIR@
EMC_SCRIPT_DIR=@EMC2_HOME@/scripts
if [ -x $EMC_BIN_DIR/linuxcnc ]; then
EMC=$EMC_BIN_DIR/linuxcnc
else
EMC=$EMC_SCRIPT_DIR/linuxcnc
fi
filename="$1"
name="$2"
comment="$3"
case ${filename##*.} in
ini) cat <<EOF
[Desktop Entry]
Name=$name
Exec=$EMC '$filename'
Type=Application
Comment=$comment
Icon=linuxcncicon
EOF
;;
demo) cat <<EOF
[Desktop Entry]
Name=$name
Exec=$filename
Type=Application
Comment=$comment
Icon=linuxcncicon
EOF
;;
esac
|