Pagina 1 di 1
[Driver] Logitech V220 Cordless Optical Mouse for Notebooks
Inviato: sabato 8 marzo 2008, 10:03
da masimomo
sapete se esiste un equivalente del software windows per abilitare il particolare scroll della rotellina premendo sx dx?
Re: [Driver] Logitech V220 Cordless Optical Mouse for Notebooks
Inviato: lunedì 10 marzo 2008, 11:11
da masimomo
Ho trovato questa soluzione ma invece di attivare lo scroll sx-dx ha attivato torna indietro-vai avanti una pagina...
io vorrei che mi facesse lo scroll su - giù oltre che con la rotellina anche premendo la rotellina a sx e dx
Make sure you have the evdev driver.
Code:
sudo apt-get install xserver-xorg-input-evdev
Make a backup of you xorg.conf and get the device info
Code:
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
cat /proc/bus/input/devices
Then use the following block of code in xorg.conf, but fill in the Dev Name and Dev Phys with the info you got from the cat command:
Code:
Section "InputDevice"
Identifier "Logitech V220"
Driver "evdev"
Option "Dev Name" "Logitech USB Receiver"
Option "Dev Phys" "usb-0000:00:1d.0-2/input0"
Option "SendCoreEvents"
Option "evBits" "+1-2"
Option "keyBits" "~272-287"
Option "relBits" "~0-2 ~6 ~8"
Option "Pass" "3"
EndSection
Then put the following line in the ServerLayout section:
Code:
InputDevice "Logitech V220"
Save and reboot.