mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
ac42931c41
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
21 lines
514 B
Bash
21 lines
514 B
Bash
#!/bin/bash
|
|
# A script to run Presentations.
|
|
|
|
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) cmd="/opt/smoffice2016/presentations $GUI" ;;
|
|
*) cmd="/opt/smoffice2016/presentations" ;;
|
|
esac
|
|
|
|
ext="${@##*.}"
|
|
shopt -s nocasematch
|
|
case "$ext" in
|
|
prs|pps|ppsx) $cmd -S\""$@"\";;
|
|
* ) $cmd "$@";;
|
|
esac
|