Skip to content

Commit e300ec1

Browse files
committed
Update docs
1 parent d727021 commit e300ec1

1 file changed

Lines changed: 20 additions & 13 deletions

File tree

docs/install.md

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,19 @@
88
### Linux
99

1010
```bash
11-
sudo apt install gcc \
12-
g++ \
13-
libappindicator3-dev \
14-
libdbus-1-dev \
15-
libfontconfig-dev \
16-
libgtk-3-dev \
17-
libpulse-dev \
18-
libx11-dev \
19-
libxdo-dev \
20-
pkg-config \
21-
protobuf-compiler
11+
sudo apt install \
12+
gcc \
13+
g++ \
14+
libappindicator3-dev \
15+
libdbus-1-dev \
16+
libfontconfig-dev \
17+
libgtk-3-dev \
18+
libpulse-dev \
19+
libudev-dev \
20+
libx11-dev \
21+
libxdo-dev \
22+
pkg-config \
23+
protobuf-compiler
2224
```
2325

2426
> _Note: Tested on Ubuntu 24.04 LTS_
@@ -63,8 +65,13 @@ To allow this program to access your device, it needs an entry in udev rules.
6365

6466
1. Create udev rules entry.
6567
`touch /etc/udev/rules.d/69-omni-led.rules`
66-
2. Using your favourite text editor add the following line and adapt it for your device.
67-
`SUBSYSTEM=="usb", ATTRS{idVendor}=="1038", ATTRS{idProduct}=="1618", MODE="0666", GROUP="plugdev"`
68+
2. Using your favourite text editor add the following lines and adapt it for your device
69+
70+
```text
71+
SUBSYSTEM=="usb", ATTRS{idVendor}=="1038", ATTRS{idProduct}=="1618", MODE="0666", GROUP="plugdev"
72+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1038", ATTRS{idProduct}=="1618", MODE="0666", GROUP="plugdev"
73+
```
74+
6875
3. Reload udev rules (in case this is insufficient, you may need to unplug and plug in the device or
6976
restart the system).
7077
`sudo udevadm control --reload-rules && sudo udevadm trigger`

0 commit comments

Comments
 (0)