15 lines
383 B
Bash
15 lines
383 B
Bash
#!/bin/sh
|
|
# A script to run PlanMaker.
|
|
|
|
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) /opt/smoffice2016/planmaker "$GUI" "$@" ;;
|
|
*) /opt/smoffice2016/planmaker "$@" ;;
|
|
esac
|