f870333b99
More information: <https://wiki.postmarketos.org/wiki/Troubleshooting:HID_buttons>
23 lines
564 B
Text
23 lines
564 B
Text
#!/sbin/openrc-run
|
|
|
|
command="/usr/sbin/thd"
|
|
command_args="--triggers /etc/triggerhappy/triggers.d/ --socket /run/thd.socket --deviceglob /dev/input/event* --pidfile=/run/triggerhappy.pid --daemon"
|
|
pidfile="/run/triggerhappy.pid"
|
|
|
|
name="Triggerhappy"
|
|
description="Triggerhappy hotkey daemon"
|
|
|
|
|
|
start() {
|
|
ebegin "Starting triggerhappy hotkey daemon"
|
|
start-stop-daemon --start --exec "$command"\
|
|
--pidfile "$pidfile" \
|
|
-- $command_args
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping triggerhappy hotkey daemon"
|
|
start-stop-daemon --stop --pidfile "$pidfile"
|
|
eend $?
|
|
}
|