Update README.md

This commit is contained in:
Steven Seifried 2019-08-18 21:18:54 +02:00
parent 68eb899f71
commit 73f5a5930d

View file

@ -53,7 +53,9 @@ make clean && make
At first point add the Module At first point add the Module
```sh ```sh
make clean make clean
sudo cp -R . /usr/src/tuxedo_keyboard-1 sudo cp -R . /usr/src/tuxedo_keyboard-1
sudo dkms add -m tuxedo_keyboard -v 1 sudo dkms add -m tuxedo_keyboard -v 1
``` ```
@ -97,6 +99,7 @@ modprobe tuxedo_keyboard
Add Module to /etc/modules Add Module to /etc/modules
```sh ```sh
sudo su sudo su
echo tuxedo_keyboard >> /etc/modules echo tuxedo_keyboard >> /etc/modules
``` ```
@ -114,6 +117,7 @@ Note that we write its' settings to a `.conf` file under `/etc/modprobe.d` named
```sh ```sh
sudo su sudo su
echo "options tuxedo_keyboard mode=0 color_left=0xFF0000 color_center=0x00FF00 color_right=0x0000FF" > /etc/modprobe.d/tuxedo_keyboard.conf echo "options tuxedo_keyboard mode=0 color_left=0xFF0000 color_center=0x00FF00 color_right=0x0000FF" > /etc/modprobe.d/tuxedo_keyboard.conf
``` ```