Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 45

Thread: HOWTO: use your Intellimouse's side buttons

  1. #11
    Join Date
    Mar 2006
    Location
    Edinburgh, Scotland, UK
    Beans
    103
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HOWTO: use your Intellimouse's side buttons

    Right i have done some more fiddling and come up with something that works for me. im not entirely sure why it works and the guides fail... but it does

    I left my xorg.conf reading as follows:
    Code:
    Section "InputDevice"
        Identifier     "Configured Mouse"
        Driver         "mouse"
        Option         "CorePointer"
        Option         "Device" "/dev/input/mice"
        Option         "Protocol" "ExplorerPS/2"
        Option         "Buttons" "7"
        Option         "ZAxisMapping" "4 5"
        Option	   "Resolution" "100"
    EndSection
    I then installed the imwheel package.

    The guides all talk about issuing the follwing command at startup (in the /etc/X11/Xsession.d/57xmodmap file)
    Code:
    xmodmap -e "pointer = 1 2 3 6 7 4 5" &
    this command swaps the button codes for buttons 45 with 67 and vice versa. (i guess )

    This didnt work for me as i got the following error upon execution:
    Code:
    chris@res05-cib3:~$ xmodmap:  commandline:1:  bad number of buttons, must have 11 instead of 7
    xorg.conf only specifies 7 buttons so im not sure where the extra 4 are coming from!!?

    anyway i decided i wouldnt remap any buttons so i issued
    Code:
    xmodmap -e "pointer = default" &
    from looking at the imwheel manpage the -b switch can also be used to remap buttons and this was being used in the command that i had from the guides:
    Code:
    imwheel -k -b "67" &
    my button mappings however seemed to match those on the imwheel man page, namely:

    4 wheel up
    5 wheel down
    6 wheel right (doesnt exist on my mouse)
    7 wheel left (doesnt exist on my mouse)
    8 thumb 1
    9 thumb 2

    and so i removed the -b switch from the imwheel command and everything worked!

    i now have no /etc/X11/Xsession.d/57xmodmap file as i am using the default mappings and i am calling imwheel with only the -k switch.

    just thought i'd post this in case someone else is having similar trouble.

    my mouse is an IntelliMouse Optical 1.1A USB

    My imwheelrc simply reads the following (for back/forward operation in firefox)

    Code:
    ".*Mozilla Firefox$"
    None,Thumb1,Alt_L|Left
    None,thumb2,Alt_L|Right

  2. #12
    Join Date
    May 2006
    Beans
    3

    Re: HOWTO: use your Intellimouse's side buttons

    Hmmm... This is something to do with Dapper... By following this How To in Breezy, it worked perfectly every time. Now that I am updated to Dapper, it is no longer working. I hate it when things that were working perfectly get broken with a new release.

  3. #13
    Join Date
    Mar 2006
    Location
    U.S.A.
    Beans
    85
    Distro
    Gutsy Gibbon Testing

    Re: HOWTO: use your Intellimouse's side buttons

    I thought I would post this here. I also have an "Intellimouse Optical 1.1A USB and PS/2 Compatible" mouse. I tried the above instructions, but they didn't work. Here's how I got this mouse to work with Ubuntu Dapper Drake 6.06 (also Edgy 6.10) on a Dell laptop:

    Its really simple. You do not need imwheel or any other key mapping program.
    First, back up your xorg.conf file.
    Code:
    sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
    Edit your xorg.conf by typing the following into the terminal:
    Code:
    sudo nano /etc/X11/xorg.conf
    Note: I use nano as my text editor, you may be using others such as gedit.

    Find the InputDevice section that has to do with your mouse. It should look similar to this:
    Code:
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            ...
    EndSection
    Edit it so it looks like this:
    Code:
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            Option          "CorePointer"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "ExplorerPS/2"
            Option          "ButtonMapping"         "1 2 3 6 7"
            Option          "ZAxisMapping"          "4 5"
    EndSection
    Restart your computer, start up your browser, and it should work!
    Last edited by Blazeix; February 26th, 2007 at 07:12 PM.

  4. #14
    Join Date
    Feb 2005
    Location
    Baltimore, Md, US
    Beans
    13
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO: use your Intellimouse's side buttons

    This also worked for me in Dapper. The addition of the "ButtonMapping" line did the trick, thanks!

  5. #15
    Join Date
    Aug 2005
    Location
    Luleå, Sweden
    Beans
    Hidden!

    Re: HOWTO: use your Intellimouse's side buttons

    Ever since Dapper came out (well actually since flight 5 or so) I have been trying to get the forward/backward buttons to work in Konqueror, my conclusion is that it is impossible

  6. #16
    Join Date
    Jul 2006
    Beans
    6

    Re: HOWTO: use your Intellimouse's side buttons

    I have come from Gentoo to Ubuntu and the side buttons did not work with Konqueror in Gentoo ether. Works fine in Firefx/Swiftfox but not in Konqueror. Something with Kde and not Ubuntu.

  7. #17

    Re: HOWTO: use your Intellimouse's side buttons

    Blazeix that worked for me. I did leave the emulate3buttons option true and it still works on Edgy.

    SWEET! I'm so jazzed. After 3 years of trying Linux distros which can deliver what I need out of an OS this is as close as I've ever gotten. Thanks!!

  8. #18
    Join Date
    Oct 2006
    Beans
    393

    Re: HOWTO: use your Intellimouse's side buttons

    Code:
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            Option          "CorePointer"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "ExplorerPS/2"
            Option          "ButtonMapping"         "1 2 3 6 7"
            Option          "ZAxisMapping"          "4 5"
    EndSection
    That worked for me but it only works in firefox. How do I get the side buttons to work in Konqueror?
    MS gonna get ya

  9. #19
    Join Date
    Jan 2007
    Beans
    8
    Distro
    Ubuntu 6.06 Dapper

    Re: HOWTO: use your Intellimouse's side buttons

    Quote Originally Posted by Blazeix View Post
    Edit it so it looks like this:
    Code:
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            Option          "CorePointer"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "ExplorerPS/2"
            Option          "ButtonMapping"         "1 2 3 6 7"
            Option          "ZAxisMapping"          "4 5"
    EndSection
    Restart your computer, start up your browser, and it should work!
    I also have an "Intellimouse Optical 1.1A USB and PS/2 Compatible" mouse.
    Works like a charm in Opera to
    Thx!

  10. #20
    Join Date
    Dec 2006
    Location
    Lawton, OK
    Beans
    345
    Distro
    Kubuntu 9.10 Karmic Koala

    Re: HOWTO: use your Intellimouse's side buttons

    So copying the above will get my buttons working?

Page 2 of 5 FirstFirst 1234 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •