summaryrefslogtreecommitdiff
path: root/makefile/scripts/motodevstudio.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makefile/scripts/motodevstudio.sh')
-rw-r--r--makefile/scripts/motodevstudio.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/makefile/scripts/motodevstudio.sh b/makefile/scripts/motodevstudio.sh
new file mode 100644
index 0000000..edf3e72
--- /dev/null
+++ b/makefile/scripts/motodevstudio.sh
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+######################
+# Language Parameter:
+######################
+#
+# Value: languageID_countryID (The _countryID may be ommited)
+# language_ID = An identifier from ISO 639-1
+# country_ID = An identifier from ISO 3166-1
+#
+# Uncomment the "LANGUAGE" parameter below to start the MOTODEV Studio for Android in the language you want
+#
+
+#LANGUAGE="-nl en"
+#LANGUAGE="-nl pt_BR"
+
+START_COMMAND=${0%.sh}
+unset UBUNTU_MENUPROXY
+
+# added duo to a eclipse bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=345979
+
+export LIBOVERLAY_SCROLLBAR=0
+
+if [ ${START_COMMAND:0:1} == "/" ]
+then
+$START_COMMAND $@ $LANGUAGE
+else
+./$START_COMMAND $@ $LANGUAGE
+fi