You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,8 +140,12 @@ There have been two instances of hardware damage in OpenRGB's development and we
140
140
* If you are not trying to use OpenRGB to control RGB RAM or motherboard LEDs, you may skip this section.
141
141
* ASUS and ASRock motherboards have their RGB controller on a secondary SMBus interface and requires a Linux kernel > 5.7 <sup>[commit](https://github.com/torvalds/linux/commit/f27237c174fd9653033330e4e532cd9d153ce824)</sup>
142
142
* Allowing access to SMBus:
143
-
1. Load the i2c-dev module: `sudo modprobe i2c-dev`
144
-
2. Load the i2c driver for your chipset:
143
+
1. Install the `i2c-tools` package.
144
+
2. Load the i2c-dev module: `sudo modprobe i2c-dev`
145
+
3. Create the i2c group if it does not already exist: `sudo groupadd --system i2c`
146
+
4. Add yourself to the i2c group: `sudo usermod $USER -aG i2c`
147
+
5. If you want you can load the i2c-dev module at boot: `sudo touch /etc/modules-load.d/i2c.conf && sudo sh -c 'echo "i2c-dev" >> /etc/modules-load.d/i2c.conf'`
0 commit comments