diff options
Diffstat (limited to 'office/smoffice2016/textmaker16')
-rw-r--r-- | office/smoffice2016/textmaker16 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/office/smoffice2016/textmaker16 b/office/smoffice2016/textmaker16 new file mode 100644 index 0000000000..c1c334cd08 --- /dev/null +++ b/office/smoffice2016/textmaker16 @@ -0,0 +1,20 @@ +#!/bin/sh +# A script to run TextMaker. + +GUI=-gui:$( \ +if [ -r ~/.smoffice_gui.conf ]; then \ + cat ~/.smoffice_gui.conf; \ +else \ + [ -r /etc/smoffice_gui.conf ] && cat /etc/smoffice_gui.conf; \ +fi | grep -o -m1 "gnome\|kde" | head -n1) + +case "$GUI" in + -gui:gnome|-gui:kde) + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/smoffice2016/dpf \ + /opt/smoffice2016/textmaker "$GUI" "$@" + ;; + *) + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/smoffice2016/dpf \ + /opt/smoffice2016/textmaker "$@" + ;; +esac |