个人工具

“UbuntuHelp:ManyButtonsMouseHowto”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(New page: {{From|https://help.ubuntu.com/community/ManyButtonsMouseHowto}} {{Languages|php5}} == Many Buttons Mouse Howto == This page gives useful informations to configure one of those mice wit...)
 
第41行: 第41行:
 
         Option          "ZAxisMapping"          "6 7"
 
         Option          "ZAxisMapping"          "6 7"
 
EndSection
 
EndSection
</nowiki></code>
+
</nowiki></pre>
  
 
Note: Using xmodmap to remap mouse buttons can result in the error "xmodmap:  commandline:1:  bad number of buttons, must have 11 instead of 7".  If you want to remap the buttons on your mouse, make the following (or similar) modification to your xorg.conf file:
 
Note: Using xmodmap to remap mouse buttons can result in the error "xmodmap:  commandline:1:  bad number of buttons, must have 11 instead of 7".  If you want to remap the buttons on your mouse, make the following (or similar) modification to your xorg.conf file:
第48行: 第48行:
 
         Option          "ZAxisMapping"          "4 5"
 
         Option          "ZAxisMapping"          "4 5"
 
         Option          "ButtonMapping"        "1 2 3 6 7"
 
         Option          "ButtonMapping"        "1 2 3 6 7"
</nowiki></code>
+
</nowiki></pre>
  
 
==== Another Example - Logitech 510 ====
 
==== Another Example - Logitech 510 ====
第63行: 第63行:
 
         Option      "Resolution" "800"
 
         Option      "Resolution" "800"
 
EndSection
 
EndSection
</nowiki></code>
+
</nowiki></pre>
  
 
=== The .imwheelrc configuration file ===
 
=== The .imwheelrc configuration file ===
第73行: 第73行:
 
None, Left, Control_L|Page_Up
 
None, Left, Control_L|Page_Up
 
None, Right, Control_L|Page_Down
 
None, Right, Control_L|Page_Down
</nowiki></code>
+
</nowiki></pre>
  
 
(obviously you'd add more applications to this file if you'd like to customize the mouse button behavior in those applications)
 
(obviously you'd add more applications to this file if you'd like to customize the mouse button behavior in those applications)
第93行: 第93行:
 
None,Left,Alt_L|Left
 
None,Left,Alt_L|Left
 
None,Right,Alt_L|Right
 
None,Right,Alt_L|Right
</nowiki></code>
+
</nowiki></pre>
  
 
See imwheel for advanced mouse button mappings.
 
See imwheel for advanced mouse button mappings.

2007年5月13日 (日) 12:47的版本


Many Buttons Mouse Howto

This page gives useful informations to configure one of those mice with tons of buttons, wheels and other controls.

If you have installed the GNOME environment you ALREADY have the software needed to get the "4th" and "5th" mice buttons working (forward/backward on most mice)!

In /etc/X11/xorg.conf or /etc/X11/XF86Config-4 change Option "Buttons" "5" to Option "Buttons" "7" (see "The X11 configuration file" section for an example). You may also have to change the ZAxisMapping option from "4 5" to "6 7" but you'll have to experiment to see what your set-up needs.

How to do it

The key to being able to program your mouse buttons is to install imwheel. Download and install it using Synaptic or apt-get.

Then, you will modify your /etc/X11/xorg.conf (or XF86Config-4) file to register that your mouse is more than the "standard" five (5) button mouse.

Note: A "standard" 2 (left, right click) + 1 (middle click/scroll) button mouse is actually a five button mouse from X11's perspective! The scroll wheel's up and down action counts as mouse buttons 4 and 5. This means that any mouse with one scroll wheel has two more buttons than you'd expect.

Then, you need to modify your /etc/X11/imwheel/imwheelrc or ~/.imwheelrc files to tell imwheel what to do with a mouse click when it happens in a particular application (see the wikis referenced below for details on what you can do with your imwheelrc or .imwheelrc file).

Note: If you modify ~/.imwheelrc this means that you can customize the imwheel behavior for each user on the system.

Then, if desired, you have to tell X11 to run imwheel whenever X11 is started (modifying /etc/X11/Xsession.d/60imwheel_start-imwheel _and_ changing IMWHEEL_START=0 to =1 in /etc/X11/imwheel/startup.conf). Alternately, you can start imwheel manually.

PS See IntellimouseMousemanBackForwardButtons for an outstanding explanation of how to set up imwheel properly.

The X11 configuration file

This is what the relevant portion of my xorg.conf file looks like:

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ExplorerPS/2"
        Option          "Emulate3Buttons"       "false"
        Option          "Buttons"               "7"
        Option          "ZAxisMapping"          "6 7"
EndSection

Note: Using xmodmap to remap mouse buttons can result in the error "xmodmap: commandline:1: bad number of buttons, must have 11 instead of 7". If you want to remap the buttons on your mouse, make the following (or similar) modification to your xorg.conf file:

        Option          "Buttons"               "5"
        Option          "ZAxisMapping"          "4 5"
        Option          "ButtonMapping"         "1 2 3 6 7"

Another Example - Logitech 510

Section "InputDevice"
        Identifier  "Configured Mouse"
        Driver      "mouse"
        Option      "Buttons" "7"
        Option      "CorePointer"
        Option      "Device" "/dev/input/mice"
        Option      "Protocol" "ExplorerPS/2"
        Option      "ZAxisMapping" "4 5"
        Option      "ButtonMapping" "1 2 3 6 7"
        Option      "Resolution" "800"
EndSection

The .imwheelrc configuration file

And my .imwheelrc looks like:

"^Firefox-bin$"
# Flip between browser tabs
None, Left, Control_L|Page_Up
None, Right, Control_L|Page_Down

(obviously you'd add more applications to this file if you'd like to customize the mouse button behavior in those applications)

Displaying Mapped Buttons - Troubleshooting

Before editing any files, (xorg.conf or .imwheelrc) you should check your mouse button mappings.

Run "imwheel -c" for graphical GUI, then press the GrabWheelAction, then press the mouse button to view its default mapping.

If for example, your side mouse buttons map to left and right, you would use the following .imwheelrc for firefox.

Example, Will substitute Left mouse map to Alt_L (left alt) and Left key. (Default Firefox back key combination)

and Right to Alt_Left+Right (Default Firefox forward key combination)

"^Firefox-bin$"
None,Left,Alt_L|Left
None,Right,Alt_L|Right

See imwheel for advanced mouse button mappings.

Useful links


CategoryDocumentation CategoryCleanup