東芝トップページ
東芝Linux情報ページ
 
お問い合わせ

東芝Linux情報サイト by 東芝デジタルメディアエンジニアリング株式会社

 

 

 

 




[tlinux-users-j:02697] Re: Libretto L5 linux プリインストールモデル動作確認
07/02/02


>  <標準マウスがアキュポイント不慣れ>
>
>  *たぶん、/etc/X11/XF86Configをうまく変更すれば、
>   アキュポイントとUSBマウスを同時に使えると思いますが、
>   今後の課題です。


以下の変更を加えると、USB/Accu同時利用と、本体スクロールボタンの利用
が可能になるはずです。

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "SendCoreEvents" #追加
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "yes"
#MouseName "Libretto Mouse"
Option "Buttons" "5" #追加
Option "ZAxisMapping" "4 5" #追加
EndSection

Section "InputDevice" #追加
Identifier "Mouse1" #追加
Driver "mouse" #追加
Option "Protocol" "IMPS/2" #追加
Option "Device" "/dev/input/mice" #追加
Option "Emulate3Buttons" "yes" #追加
#MouseName "Microsoft - IntelliMouse (USB)" #追加
Option "Buttons" "5" #追加
Option "ZAxisMapping" "4 5" #追加
EndSection #追加