IBM 小紅點鍵盤相信用過的大多都會喜歡, 但是習慣滾輪的, 在 Xwindow 裡面滾輪可以用, 就覺得不太方便.
在 Xwindow 要讓中鍵可以直接用類似滾輪的功能, 只要加三行簡單的設定即可.
下述設法是設 Xorg 的設定, 但是舊的 X11R6 也是一樣的設定.(因為搜尋時找到自己以前寫的文章 - IBM小紅點滾輪使用(Linux), 照著設定, 還是通用的)
設法如下:
- vim /etc/X11/xorg.conf
- 找到下面這段文字
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
EndSection - 於 EndSection 前加入下面這三行
Option "EmulateWheel" "yes"
Option "EmulateWheelButton" "2"
Option "ZAxisMapping" "4 5" - 完成是這樣子
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "yes"
Option "EmulateWheelButton" "2"
Option "ZAxisMapping" "4 5"
EndSection - 再來重新啟動 Xwindow 即可. (中鍵功能一樣保留, Firefox 上中鍵一樣會以分頁開啟視窗, 然後於空白出中鍵, 再小紅點上下拉, 即有滾輪效果)