aa23d11176
can launch arbitrary commands on input events. It supports the hotplugging of devices and the processing of key combinations. Thanks to Stefan Tomanek! git-svn-id: svn://svn.openwrt.org/openwrt/packages@24018 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
297 B
Bash
16 lines
297 B
Bash
#!/bin/sh
|
|
THD_SOCKET=/tmp/triggerhappy.socket
|
|
[ -S "$THD_SOCKET" ] || exit
|
|
|
|
case "$ACTION" in
|
|
add)
|
|
DEVICE="/dev/$DEVNAME"
|
|
[ -c "$DEVICE" ] || exit
|
|
# offer device to triggerhappy daemon
|
|
/usr/sbin/th-cmd --socket "$THD_SOCKET" --add "$DEVICE"
|
|
;;
|
|
remove)
|
|
# nothing to do
|
|
;;
|
|
esac
|