[筆記] ubuntu 9.10 下啟用小紅點中鍵滾動頁面的功能

用過小紅點的人都知道,按住中鍵再上下推動小紅點,畫面就會往上或往下scroll,剛灌好 ubuntu 9.10 的時候,這個功能並沒有被啟動,感覺小紅點就像是斷了一支腳一樣,後來爬了一下文,發現果真是有辦法讓中鍵可以活過來的。

作法滿簡單的,在 /etc/hal/fdi/policy/ 下放一個名為 "mouse-wheel.fdi" 檔案,

sudo joe /etc/hal/fdi/policy/mouse-wheel.fdi

其內容為

<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
    <match key="info.product" string="TPPS/2 IBM TrackPoint">
      <merge key="input.x11_options.EmulateWheel" type="string">true</merge>
      <merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
      <merge key="input.x11_options.XAxisMapping" type="string">6 7</merge>
      <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
      <merge key="input.x11_options.ZAxsisMapping" type="string">4 5</merge>
      <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
    </match>
  </device>
</deviceinfo>

然後重開機即可

來源


繼續閱讀...

  © Blogger template 'Minimalist G' by Ourblogtemplates.com 2008 Modified By Hugh

Back to TOP