/lib/udev/udev.lomoco is in lomoco 1.0.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/sh
#
# udev helper script for the locomo utility
#
test -x /usr/bin/lomoco || exit 0
test -r /etc/default/lomoco || exit 0
options=
. /etc/default/lomoco
if [ -n "$LOGITECH_MOUSE_RESOLUTION" ]; then
options="--$LOGITECH_MOUSE_RESOLUTION"
fi
if [ -z "$LOGITECH_MOUSE_DISABLE_CC" -o "$LOGITECH_MOUSE_DISABLE_CC" = yes ]; then
options="$options --no-sms"
fi
if [ -n "$options" ]; then
/usr/bin/lomoco -b $BUSNUM -d $DEVNUM -p $ID_MODEL_ID $options 2>&1 |\
sed -e 's/^[[:blank:]]\+//' -e 's/ \+$//' -e '/^$/ d' |\
logger -t lomoco -p daemon.info
fi
|