Ich habe eine Razer Deathadder und nutze XFCE als Desktop Environment. Früher unter Ubuntu und später unter Arch mit E17 ging die mittlere Maustaste ohne Probleme. Doch die Kombination Arch + XFCE scheint irgendwas durcheinandergebracht zu haben. Wenn ich
xev
ausführe wird kein Event getriggert wenn ich auf die mittlere Taste klicke. Meine xorg Config:
$ cat /etc/X11/xorg.conf.d/10-evdev.conf
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "Name" "Razer Razer DeathAdder" # diese zeile hab ich hinzugefügt, ohne Effekt
Option "ButtonMapping" "1 2 3 4 5 6 7 8" # diese zeile hab ich hinzugefügt, ohne Effekt
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "de"
Option "XkbVariant" "deadgraveacute"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
(Den Thread hab ich ausversehen schonmal im falschen Unterforum angelegt. Bevor er dort verwaist hab ich ihn nochmal neu angelegt. Der hier kann gelöscht werden:
https://forum.archlinux.de/viewtopic.php?id=22407)