mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
366 B
D
22 lines
366 B
D
|
#!/bin/bash
|
||
|
LMCTL_ARGS=
|
||
|
[ -f /etc/conf.d/lmctl ] && . /etc/conf.d/lmctl
|
||
|
|
||
|
. /etc/rc.conf
|
||
|
. /etc/rc.d/functions
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
stat_busy "Setting up Logitech Mouse"
|
||
|
/usr/bin/lmctl ${LMCTL_ARGS} &>/dev/null
|
||
|
if [ $? -eq 0 ] ; then
|
||
|
stat_fail
|
||
|
else
|
||
|
stat_done
|
||
|
add_daemon lmctl
|
||
|
fi
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 {start}"
|
||
|
esac
|