mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
15 lines
383 B
Text
15 lines
383 B
Text
|
#!/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
|