在Ubuntu下更好的使用Thinkpad T60-键盘灯和指点杆

  Thinkpad的Linux用户群很大,在笔记本里属于Linux支持的比较好的,驱动基本上都有,ThinkWiKi还有很多Linux的文档。

  每天上班都用Gaim来访问MSN和IRC,无意中发现Ubuntu里有一个包叫gaim-thinklight,能在收到消息时闪烁Thinklight(Thinkpad 上面的键盘灯),非常实用,而且很酷,就是功能有些简单,只能在收到消息的时候闪烁,打算有时间的时候把他结合到guification里去,那就太方便了。

  可以在脚本里控制Thinklight的开关

   echo on > /proc/acpi/ibm/light
   echo off > /proc/acpi/ibm/light

  Thinkpad的另一个特点就是指点杆了,Linux也同样能设定成按下中键模拟滚动条,在/etc/X11/xorg.conf里找到

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

  在EndSection前面加上

Option "EmulateWheel" "on"
Option "EmulateWheelButton" "2"

  就行了。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e740c774a5b51d5720396810baeee576.html