slackbuilds_ponce/office/smoffice2016/planmaker16
Alexander Verbovetsky ac42931c41 office/smoffice2016: Added (office suite).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2017-01-11 20:56:53 +07:00

14 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