summarylogtreecommitdiffstats
path: root/presentationsnx
blob: 4f7606efd18d2392b002be659cb9f52811b44f25 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# A script to run Presentations.
ext="${@##*.}"
shopt -s nocasematch
case "$ext" in
	"prs" ) /usr/share/officenx/presentations -S\""$@"\";;
	"pps" ) /usr/share/officenx/presentations -S\""$@"\";;
	"ppsx" ) /usr/share/officenx/presentations -S\""$@"\";;
	* ) /usr/share/officenx/presentations "$@";;
esac