File: mouseemu.init

package info (click to toggle)
mouseemu 0.15-8
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 212 kB
  • ctags: 73
  • sloc: sh: 1,093; ansic: 576; makefile: 65
file content (64 lines) | stat: -rw-r--r-- 1,735 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#! /bin/sh
#
# init.d script for mouseemu

### BEGIN INIT INFO
# Provides:          mouseemu
# Required-Start:    udev $local_fs $remote_fs
# Required-Stop:     udev $local_fs $remote_fs
# Should-Start:      $syslog
# Should-Stop:       $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Emulate mouse buttons and mouse wheel
# Description:       Mouseemu is a daemon to emulate mouse buttons on trackpads
#                    with only one button. It lets you:
#                      - emulate middle and right click
#                      - emulate mouse wheel
#                      - block trackpad while typing
#              
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/mouseemu
NAME=mouseemu
DESC="mouse emulation daemon"

test -x $DAEMON || exit 0

# Include mouseemu defaults if available
if [ -f /etc/default/mouseemu ] ; then
	. /etc/default/mouseemu
	MOUSEEMU_OPTS="$MID_CLICK $RIGHT_CLICK $SCROLL $TYPING_BLOCK"
fi

set -e

case "$1" in
  start)
	echo -n "Starting $DESC: "
	modprobe -q uinput || true
	# Give udev some time to create the device node
	sleep 1
	start-stop-daemon --start --quiet --exec $DAEMON -- $MOUSEEMU_OPTS >/dev/null
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop --oknodo --retry 3 --quiet --exec $DAEMON >/dev/null
	echo "$NAME."
	;;
  restart|force-reload)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop --oknodo --retry 3 --quiet --exec $DAEMON >/dev/null
	start-stop-daemon --start --quiet --exec $DAEMON -- $MOUSEEMU_OPTS >/dev/null
	echo "$NAME."
	;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0