ฉันใช้งาน Ubuntu บน Thinkpad T60 มีวิธีรับปุ่มตรงกลางเพื่อทำหน้าที่เหมือนเลื่อนเหมือนเมื่อมันใช้ Windows หรือไม่?
ฉันต้องการกดปุ่มตรงกลางค้างไว้และเลื่อนหน้าเว็บลงโดยใช้ปุ่มสีแดง
ฉันใช้งาน Ubuntu บน Thinkpad T60 มีวิธีรับปุ่มตรงกลางเพื่อทำหน้าที่เหมือนเลื่อนเหมือนเมื่อมันใช้ Windows หรือไม่?
ฉันต้องการกดปุ่มตรงกลางค้างไว้และเลื่อนหน้าเว็บลงโดยใช้ปุ่มสีแดง
คำตอบ:
http://www.eastwoodzhao.com/thinkpad-middle-button-scroll-ubuntu-linux-10-04-lucid-lynx/
กล่าวโดยย่อให้เรียกใช้สิ่งนี้: gksu gedit /usr/lib/X11/xorg.conf.d/20-thinkpad.conf
และวางลงในไฟล์
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint"
MatchDevicePath "/dev/input/event*"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
บันทึกและรีสตาร์ท
Driver "evdev"
ไฟล์การกำหนดค่าด้วย
ติดตั้งแพคเกจ "gpointing-device-settings" ตั้งค่าตัวเลือกดังนี้:
check "Use middle button emulation"
check "Use wheel emulation"
select button "2"
check "Enable vertical scroll"
ThinkWiki มีคำแนะนำเกี่ยวกับวิธีการทำเช่นนี้ โดยเฉพาะวิธีการใช้xinput (1)เพื่อกำหนดค่า TrackPoint
(โดยรวมแล้วThinkWikiเป็นแหล่งข้อมูลที่ยอดเยี่ยมมันเป็นที่ที่น่าไปสำหรับทุกอย่างเกี่ยวกับการใช้งาน Linux บน Thinkpads)
Gpointing เป็นโปรแกรมกราฟิกสำหรับเดสก์ท็อป GNOME เพื่อให้ได้ผลลัพธ์เดียวกัน)
ด้วย Ubuntu ติดตั้งในเทอร์มินัล
sudo apt-get install gpointing-device-settings
หรือผ่านทางศูนย์ซอฟต์แวร์ "gpointing-device-settings"
E: Package 'gpointing-device-settings' has no installation candidate aj07mm@aj07mm-ThinkPad-X220:~$
ฉันใช้สิ่งต่อไปนี้ในไฟล์โปรแกรมเริ่มอัตโนมัติ AwesomeWM ของฉัน:
# make the mouse work right on my thinkpad in lucid
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation" 1
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation Button" 2
xinput set-prop 'TPPS/2 IBM TrackPoint' "Evdev Wheel Emulation Timeout" 200
ในการติดตั้ง Gnome เริ่มต้นคุณสามารถเขียนสคริปต์ที่ทำงานขณะบู๊ตหรืออาจตรวจสอบว่ามีการใช้. xinitrc หรือ. Xresources หรือไม่ (ฉันจำไม่ได้ว่าจะใช้รายการไหนอีกต่อไป)
ใน Ubuntu 14.04 การตั้งค่าเหล่านี้อยู่ใน /usr/share/X11/xorg.conf.d/11-evdev-trackpoint.conf ดูเหมือนว่านี้:
# trackpoint users want wheel emulation
Section "InputClass"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
ในการรับ "การเลื่อนแบบเป็นธรรมชาติ" นั่นคือการเลื่อนตามทิศทางของตัวชี้คุณสามารถสลับค่า YAxisMapping เป็น "5 4" แทน ฉันเริ่มต้นใหม่หลังจากสลับสับเปลี่ยนของฉันและทำงานได้ดี
gksu gedit /usr/share/X11/xorg.conf.d/20-thinkpad.conf
แทน