|
1
2
3
4
5
6
|
To automatically run the program on device plug in or plug out events, add this to `udev` rules:
```
ACTION=="add", ATTRS{bInterfaceClass}=="03", ENV{DISPLAY}=":0.0" RUN+="/bin/su - imanol -c /usr/local/bin/touchpad_disabler"
ACTION=="remove", ENV{DISPLAY}=":0.0" RUN+="/bin/su - imanol -c /usr/local/bin/touchpad_disabler"
```
|