mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
ac42931c41
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
20 lines
497 B
Bash
20 lines
497 B
Bash
#!/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
|