summaryrefslogtreecommitdiff
path: root/office/smoffice2016/planmaker16
diff options
context:
space:
mode:
authorAlexander Verbovetsky <alik@ejik.org>2017-01-11 20:56:53 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2017-01-11 20:56:53 +0700
commitac42931c41e0a3f63655624be43f64e3b8de5b36 (patch)
treec7a77101635ae047abad68340034a7ccc8fce54f /office/smoffice2016/planmaker16
parente1534e5676b8a7691f2bd89aa8ebd8b4157d562e (diff)
downloadslackbuilds-ac42931c41e0a3f63655624be43f64e3b8de5b36.tar.gz
office/smoffice2016: Added (office suite).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/smoffice2016/planmaker16')
-rw-r--r--office/smoffice2016/planmaker1614
1 files changed, 14 insertions, 0 deletions
diff --git a/office/smoffice2016/planmaker16 b/office/smoffice2016/planmaker16
new file mode 100644
index 0000000000..6c50f83ffa
--- /dev/null
+++ b/office/smoffice2016/planmaker16
@@ -0,0 +1,14 @@
+#!/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