summaryrefslogtreecommitdiff
path: root/x11/xfstt/files/xfstt.sh
blob: 6bd4cebb12a1e3d082327067a03a28a117e89e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

PREFIX=%%PREFIX%%

case "$1" in

start)
	${PREFIX}/bin/xfstt --sync >/dev/null
	${PREFIX}/bin/xfstt --user nobody --notcp --daemon && echo -n ' xfstt'
	;;
stop)
	kill `ps -auxwww | grep xfstt | awk '{ print $2 }'`
	echo -n ' xfstt'
	;;
*)
	echo "$0 start | stop"
	;;

esac