aboutsummaryrefslogtreecommitdiff
path: root/system/logiops/README
blob: afe3260cfc9147bb598c1608fdb64431dd4642d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# LogiOps
This is an unofficial driver for Logitech mice and keyboard.
This is currently only compatible with HID++ \>2.0 devices.

## Configuration
You may refer to 'logid.example.cfg' in '/usr/doc/logiops-(version)' 
for an example.
Default location for the configuration file is /etc/logid.cfg, but 
another can be specified using the `-c` flag.

## Execute daemon
To execute logid daemon at boot, you may execute (as root) the following
commands:

cat >> /etc/rc.d/rc.local <<EOF
# Start logiops daemon
if [ -x /usr/bin/logid -a -r /etc/logid.cfg ]; then
  echo "Starting logiops daemon"
  /usr/bin/logid &
fi
EOF