Re: [SOLVED] Udev alternatives in Artix
Reply #44 –
So, i have solved that issue for Firefly and maybe this is a general solution if you need evdev with X but don't use udev. In my case /dev/input/event0 is mouse, /dev/input/event1 is keyboard and i made the following configs for Xorg:1) /etc/X11/xorg.conf.d/00-evdev.conf
Section "Module"
Load "evdev"
EndSection
Section "InputDevice"
Identifier "evdev-input0"
Driver "evdev"
Option "Device" "/dev/input/event0"
EndSection
Section "InputDevice"
Identifier "default-keyboard"
Driver "evdev"
Option "Device" "/dev/input/event1"
Option "CoreKeyboard"
EndSection
2)/etc/X11/xorg.conf.d/99-main.conf
Section "ServerLayout"
Identifier "main"
InputDevice "evdev-input0"
InputDevice "default-keyboard"
EndSection
Now both keyboard and mouse use evdev module and keys work properly without additional configuration