Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Microsoft IntelliMouse Optical Configuration
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5, 6  Next  
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
gungter
n00b
n00b


Joined: 10 Aug 2003
Posts: 8

PostPosted: Sun Aug 31, 2003 3:21 pm    Post subject: Reply with quote

What am I doing wrong ? I've tried everything that you've been talking here, but still my mouse's side buttons and wheel aren't working without writing the commands xmodmap and imwheel manually. I think it must be somthing simple, but I just can't find out what it could be.
Back to top
View user's profile Send private message
RedBeard0531
Guru
Guru


Joined: 21 Sep 2002
Posts: 415
Location: maryland

PostPosted: Sun Sep 07, 2003 3:26 am    Post subject: Reply with quote

For the life of me, I cant figgure it out. Why dont they add support in apps for buttons 6 and 7? :evil: :evil: :evil: :evil: :evil: :evil:
Then i could access it directly from the program. I realize that Xfree is based on the archaic X protocal that calls for 3 buttons, but come on! These things have been out for several years, its not some new passing fad. If Konq and Moz etc. would just nativly support unlimited (ok, mabey like 10 is resonable) buttons life would be much easier. I KNOW this is possable b/c fvwm supports unlimited (afaik) buttons natively.

--end rant-- 8)
_________________
OH MY GOD! Kenny just killed Kenny!
That Basterd!
Back to top
View user's profile Send private message
Dalcius
n00b
n00b


Joined: 05 Dec 2002
Posts: 37
Location: Austin, TX

PostPosted: Thu Sep 25, 2003 12:50 am    Post subject: Success story Reply with quote

Just thought I'd pass along a success story.

System:
    -x11-base/xfree: 4.3.0-r3
    -gnome-base/gnome: 2.4
    -Microsoft IntelliMouse Optical 1.0A USB and PS/2 Compatible


The easiest way I've found is to do the following:

Code:

/etc/X11/XF86Config:
Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "ExplorerPS/2"
    Option "Device"      "/dev/usbmouse"
    Option "Buttons"    "7"
    Option "ZAxisMapping"       "6 7"                                                                                                                           
    Option "Resolution" "1200"                                                                                                                                   
EndSection

/etc/X11/Xmodmap (you'll probably have to create this):
pointer = 1 2 3 6 7 4 5


This sets up mapping system wide.

Hope it helps anyone who's still stuck.
_________________
-Dalcius
Back to top
View user's profile Send private message
BackSeat
Apprentice
Apprentice


Joined: 12 Apr 2002
Posts: 242
Location: Reading, UK

PostPosted: Wed Oct 01, 2003 8:43 am    Post subject: Reply with quote

Anyone using a Microsoft Wireless Optical Mouse 2.0?

I was using an Intellimouse, and that worked fine. I used the middle button (ie, clicking the wheel) in Galeon to open a link in a new tab. The Wireless Optical Mouse works fine too, but the middle button doesn't always work. One difference between the two mice is that the original Intellimouse has detents on the wheel whereas the Optical Mouse doesn't: it is a smooth rolling action.

It seems to me that the wheel can sometimes be in a position where, for some reason, X doesn't recognise the middle button down event (although xev seems to see them OK). Hmm, thought just occurs to me: this mouse has the tilting wheel, so perhaps I'm inadvertently tilting the wheel when I click. Has anyone configured a tilting wheel to work under X?

BS
Back to top
View user's profile Send private message
Schizoid
Apprentice
Apprentice


Joined: 11 Apr 2003
Posts: 267

PostPosted: Sun Oct 05, 2003 11:35 pm    Post subject: Reply with quote

BackSeat wrote:
Anyone using a Microsoft Wireless Optical Mouse 2.0?

I was using an Intellimouse, and that worked fine. I used the middle button (ie, clicking the wheel) in Galeon to open a link in a new tab. The Wireless Optical Mouse works fine too, but the middle button doesn't always work. One difference between the two mice is that the original Intellimouse has detents on the wheel whereas the Optical Mouse doesn't: it is a smooth rolling action.

It seems to me that the wheel can sometimes be in a position where, for some reason, X doesn't recognise the middle button down event (although xev seems to see them OK). Hmm, thought just occurs to me: this mouse has the tilting wheel, so perhaps I'm inadvertently tilting the wheel when I click. Has anyone configured a tilting wheel to work under X?

BS


I just came home the other day with the "Microsoft Optical Wireless Desktop Elite" which includes a fancy keyboard and mouse.

I have xbindkeys in use for all the special keyboard keys and that works like a charm. I am however having trouble getting the two extra buttons (Nine total!) working on the mouse.

7 buttons work fine, but when I try to add in the other two I get confused very quickly!

In my XF86Config-4 file I have total buttons set to 9 and the z axis mapping set to 8 9. Then for xmodmap I have pointer 1 2 3 4 5 8 9 6 7 and -b 89 on imwheel.

This doesn't work of course :-p. The wheel seems to be hilighting text or something lol, and the 2 new buttons are not doing anything. The back/forward buttons are scrolling up and down. Back goes up and forward goes down.

Trying to figure this out is making my head spin.

Also while I am here....I would like to bind two keyboard keys to do back/forward in the browser. So I need to bind a key with xbindkeys to Alt L and Alt R. Anyone aware of a way to do something like this?

Thank you for any help here.
Back to top
View user's profile Send private message
Blackace
Retired Dev
Retired Dev


Joined: 28 Jul 2002
Posts: 58

PostPosted: Mon Oct 06, 2003 11:20 pm    Post subject: Reply with quote

Schizoid:

Run xev from the terminal and go through, pressing all your buttons, look for ButtonRelease events and see what "button #" it says for each one.

This is before you've done any xmodmap stuff.

Then ZAxisMapping should be set to whatever buttons your scroll wheel actually is before xmodmap has changed things.

Now, if your scroll buttons are actually (before xmodmap) something other than 4 and 5 (like 8 and 9 for instance), you need to use xmodmap to make them 4 and 5:
Code:
xmodmap -e "pointer = 1 2 3 8 9 6 7 4 5"

Or something to that effect, basically you want to assign 8 to 4 and 9 to 5, which are the buttons most applications look to for scrolling input.

Now in a completely separate process, you use imwheel to make special buttons like back and forward work, by having imwheel handle buttons 6,7,8,9 which are actual buttons 6,7,4,5.

Remember that the xmodmap command above has CHANGED what numbers correspond to what buttons, so:
Code:
xmodmap -e "pointer = 1 2 3 8 9 6 7 4 5" (Change)
            pointer = 1 2 3 4 5 6 7 8 9  (After Change)
                      | | | | | | | | |
               Left <-+ | | | | | | | |
                        | | | | | | | |
               Middle <-+ | | | | | | |
                          | | | | | | |
                  Right <-+ | | | | | |
                            | | | | | |
                Scroll Up <-+ | | | | |
                              | | | | |
                Scroll Down <-+ | | | |
                                | | | |
                      Special <-+-+-+-+


And also remember that imwheel and the button numbers you use with it are entirely separate from scrolling or what is in ZAxisMapping.

Basically these are the things that have helped me understand how it all works.

Blackace.
_________________
Few things are harder to put up with than the annoyance of a good example.
- Mark Twain
Back to top
View user's profile Send private message
mawst
Tux's lil' helper
Tux's lil' helper


Joined: 23 Nov 2002
Posts: 101
Location: MN, USA

PostPosted: Tue Oct 07, 2003 10:33 am    Post subject: Great! Reply with quote

This is great info. Simply edited my xf86config and added the line to my ~/.xinitrc and BOOM! mouse4 and mouse5 are now availbel to me. Great in Jedi Academy for swicthing force powers.

Cheers!

-mawst
Back to top
View user's profile Send private message
Schizoid
Apprentice
Apprentice


Joined: 11 Apr 2003
Posts: 267

PostPosted: Tue Oct 07, 2003 9:35 pm    Post subject: Reply with quote

Blackace wrote:
Schizoid:

Run xev from the terminal and go through, pressing all your buttons, look for ButtonRelease events and see what "button #" it says for each one.

This is before you've done any xmodmap stuff.

Then ZAxisMapping should be set to whatever buttons your scroll wheel actually is before xmodmap has changed things.

Basically these are the things that have helped me understand how it all works.

Blackace.


Ok this is a bit odd.

Here is my mouse setup:

Code:

Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/usbmouse"
    Option "Buttons" "9"
    Option "ZAxisMapping" "6 7"
    Option "Resolution" "200"
EndSection


Now I have commented out the xmodmap and imwheel lines in my xfce init file and when I run xev I get:
Wheel up = 6
Wheel down = 7
Back button = 4
Forward button = 5

The two extra buttons on my new mouse are used by pushing the scroll wheel side to side. So you can push it left to scroll left, right for right.

When I push them in xev I get what looks like a keyboard button press.

Code:

KeyPress event, serial 27, synthetic NO, window 0x1200001,
     root 0x40, subw 0x0, time 246211, (102,111), root:(612,130),
     state 0x00, keycode 196 (keysym 0x0, NoSymbol), same_screen YES,
     XLookupString gives 0 bytes: ""


I get the same keycode when I do it left & right too.

Now I use xbindkeys to bind all those crazy keys on my keyboard and I suppose if it really thinks this is a keyboard key I can bind it with xbindkeys. But it seems to be one one key??

A bit confusing!

I am going to turn imwheel back on now before I kill myself trying to use the scroll wheel.

Thank you for your help, any idea what is going on here?
Back to top
View user's profile Send private message
Diezel
l33t
l33t


Joined: 04 Feb 2003
Posts: 600
Location: Karjaa, Finland

PostPosted: Fri Oct 24, 2003 4:56 pm    Post subject: Reply with quote

I don't know what I have done wrong here but this is the drill. I get everything vorking smoothly but both side buttons on the Intellimouse Explorer 3 scroll the webpage upwards!??
Everything is set up acording to the tips so it skould work.
I even had it working before my hardisk went to heaven and I had to reinstall.
Any tips here?
_________________
A bus station is where a bus stops, a train station is where a train stops. On
my desk I have a work station..
Nixadmins.net
FLUG member 473
Back to top
View user's profile Send private message
Number6
n00b
n00b


Joined: 24 Nov 2003
Posts: 11
Location: Las Vegas, NV, USA

PostPosted: Fri Nov 28, 2003 6:51 pm    Post subject: Reply with quote

It took me a while to figure this out...

For those of us who prefer KDE, the xinitrc file is found in /etc/X11/xinit

Slowly but surely, i'm getting the hang of this.

Here are all my settings in case this helps anyone else out. (I have a Dell 8200 Inspiron with a MS Intellimouse USB explorer and the mouse, mousewheel, side buttons, touchpad and pointer all work all the time.)

/etc/X11/xinit/xinitrc

Code:

#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
xinitdir=/usr/X11R6/lib/X11/xinit
sysresources=$xinitdir/.Xresources
sysmodmap=$xinitdir/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
    xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
    xmodmap $usermodmap
fi


#Scroll wheel Stuff
exec imwheel -k -b "67" &




# First try ~/.xinitrc
if [ -f "$HOME/.xinitrc" ]; then
        XINITRC="$HOME/.xinitrc"
        exec /bin/sh "$HOME/.xinitrc"
# If not present, try the system default
elif [ -n "`/etc/X11/chooser.sh`" ]; then
        exec "`/etc/X11/chooser.sh`"
# Failsafe
else
        # start some nice programs
        twm &
        xclock -geometry 50x50-1+1 &
        xterm -geometry 80x50+494+51 &
        xterm -geometry 80x20+494-0 &
        exec xterm -geometry 80x66+0+0 -name login
fi



/etc/X11/Xmodmap

Code:

pointer = 1 2 3 6 7 4 5


/etc/X11/XF86Config

Code:

Section "InputDevice"
     Identifier     "Mouse1"
     Driver         "mouse"
     Option "Protocol"     "ExplorerPS/2"
     Option "Device"     "/dev/input/mice"
     Option "Buttons" "7"
     Option "ZAxisMapping" "6 7"
EndSection

Section "InputDevice"
    Identifier     "Touch Pad"
    Driver         "mouse"
    Option         "Device"         "/dev/psaux"
    Option         "Protocol"       "GlidePointPS/2"
    Option         "ZAxisMapping"   "4 5"
    Option         "Emulate3Buttons"
    Option         "CorePointer"    "true"

EndSection


More
/etc/X11/XF86Config

Code:
   
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Touch Pad" "SendCoreEvents"


Also, /home/usernamehere/.Xmodmap

Code:


pointer = 1 2 3 6 7 4 5
Back to top
View user's profile Send private message
opello
n00b
n00b


Joined: 01 Jul 2002
Posts: 35
Location: USA

PostPosted: Sat Nov 29, 2003 5:52 pm    Post subject: Reply with quote

sorta off topic here - buti also have an inspiron 8200, and was wondering if you have scrolling or any touchpad special stuff working?

i'm told the new synaptics driver has some alps support, but haven't heard from anyone that's tried it yet
Back to top
View user's profile Send private message
Number6
n00b
n00b


Joined: 24 Nov 2003
Posts: 11
Location: Las Vegas, NV, USA

PostPosted: Sat Nov 29, 2003 8:04 pm    Post subject: Reply with quote

I never used the "special" touchpad stuff. I just want it to move the mouse and have the buttons work, which they do. (Altho tapping the pad does do a left-click)

They way I have it now, the touchpad works, the pointer stick works and the USB mouse all work at the same time and I can hotplug and unplug the mouse and it works all the time, which is what I was after. Plus I got the scrollwheel on the mouse working and the back/forward side mouse buttons are working.

If you're interested, drop me a PM and I'll send you copies of my config files.
Back to top
View user's profile Send private message
r4d1x
Apprentice
Apprentice


Joined: 25 Nov 2003
Posts: 157
Location: Japan

PostPosted: Sun Nov 30, 2003 1:40 pm    Post subject: Reply with quote

ok, ive got imwheel running, (had to run it from /etc/X11/Sessions/enlightenment) but now scrolling down with the mouse whll scrolls up, and up still scrolls up. anyone know how to fix this? the thumb buttons still act as mouse1 and mouse2.

#!/bin/sh
/usr/bin/enlightenment
xmodmap -e "pointer = 1 2 3 6 7 4 5 "
imwheel -k -p -b "67"

any ideas?
Back to top
View user's profile Send private message
r4d1x
Apprentice
Apprentice


Joined: 25 Nov 2003
Posts: 157
Location: Japan

PostPosted: Sun Nov 30, 2003 3:19 pm    Post subject: Reply with quote

well, now the scroll wheel doesnt work and the left and right side buttons act like the scroll wheel. i changed the xmodmap from 1 2 3 6 7 4 5 to 1 2 3 4 5 6 7.

ideas?
Back to top
View user's profile Send private message
oldsk00l
Tux's lil' helper
Tux's lil' helper


Joined: 18 Oct 2003
Posts: 140

PostPosted: Mon Dec 29, 2003 11:00 pm    Post subject: Reply with quote

hmm, strange, but when I add it to my /etc/X11/Sessions/Gnome file, it doesn't work.

I don't think I am adding it correctly, exactly what is it suppose to look like inside the script.
Back to top
View user's profile Send private message
opello
n00b
n00b


Joined: 01 Jul 2002
Posts: 35
Location: USA

PostPosted: Tue Dec 30, 2003 5:41 pm    Post subject: Reply with quote

i had problems with imwheel unless i padded it with zeroes, so here's my line from xinitrc:
Code:
imwheel -k -b 000067


when you do 000067 the 'symbols' as i call them for the buttons are "Thumb1" and "Thumb2" making it a little more intuitive, as well as explicitly disabling imwheel's capturing of other button events (at least is my understanding)

i'm still using
Code:
xmodmap -e "pointer = 1 2 3 6 7 4 5" &
in my xinitrc however ...
Back to top
View user's profile Send private message
Nitsuj
n00b
n00b


Joined: 23 Apr 2004
Posts: 23
Location: Louisville, KY

PostPosted: Fri Apr 30, 2004 5:22 pm    Post subject: Reply with quote

I can't for the life of me get it to work automatically at boot. I can get my mousewheel working and my side buttons going front and back in Mozilla, but I have to type in the commands manually everytime I boot up. I've tried edting /etc/X11/Sessions/kde-3.2.2 as follows:

Code:
#!/bin/sh
xmodmap -e "pointer = 1 2 3 6 7 4 5"
imwheel -k -b "67"
/usr/kde/3.2/bin/startkde


I've added exec in front of the commands, but nothing seems to work. When I boot my mousewheel just highlights text and my side buttons scroll until I type those commands in the console.

I even tried editing my /etc/X11/xinit/xinitrc as someone else reccomended, but that doesnt work either. I'm still new to Gentoo/Linux, so if anyone can please tell me how the hell to get those commands to be passed automatically at boot i would REALLY appreciate it.
Back to top
View user's profile Send private message
numerodix
l33t
l33t


Joined: 18 Jul 2002
Posts: 743
Location: nl.eu

PostPosted: Fri Apr 30, 2004 5:47 pm    Post subject: Reply with quote

I'm having trouble getting an external usb mouse to work on a laptop. The touchpad is running fine, xfree config is identical to the one here apart from the print out below: https://forums.gentoo.org/viewtopic.php?t=105524

I also have an MS Explorer mouse that I've been using on my stationary computer and I've copied the config and put it in XF86Config like so:

Code:

Section "InputDevice"
     Driver "synaptics"
     Identifier "Mouse1"
     Option "Device"    "/dev/input/event0"
     Option "Protocol"  "event"
     Option "LeftEdge"  "0"
     Option "RightEdge" "6000"
     Option "TopEdge"   "0"
     Option "BottomEdge"        "6000"
     Option "FingerLow" "25"
     Option "FingerHigh"        "30"
     Option "MaxTapTime"        "180"
     Option "MaxTapMove" "220"
     Option "VertScrollDelta" "100"
     Option "MinSpeed"  "0.07"
     Option "MaxSpeed"  "0.22"
     Option "AccelFactor"       "0.0004"
     Option "SHMConfig" "on"
     Option "EdgeMotionSpeed" "0"
     Option "SHMConfig" "on"
     Option "EdgeMotionSpeed" "0"
EndSection

Section "InputDevice"
    Identifier      "USBmouse"
    Driver      "mouse"
    Option "Resolution"  "1680"
    Option "Protocol"    "ExplorerPS/2"
    Option "Device"      "/dev/usbmouse
    Option "Buttons"     "7"
    Option "ZAxisMapping" "6 7"
EndSection

"Section "ServerLayout"
# The Identifier line must be present
        Identifier      "Server Layout"

        Screen          "Screen0"

        InputDevice     "Mouse1"        "SendCoreEvents"
        InputDevice     "Mouse1"        "CorePointer"
        InputDevice     "USBmouse"
        InputDevice     "Keyboard1"     "CoreKeyboard"

EndSection


The mouse doesn't work at all in X. I have a bunch of usb modules compiled and use hotplug to load them, dmesg shows no errors my mouse is recognized by model. I also have both the mouse and the touchpad working with gpm, setting proto to imps2 and device to /dev/usbmouse.

If someone is using an external usb mouse, maybe you could show me your config?

# cat /proc/config.gz | gunzip | grep HID
# USB Human Interface Devices (HID)
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
# USB HID Boot Protocol drivers

# lsmod
Module Size Used by
fglrx 207876 7
firmware_class 7936 0
hostap 76556 0
8139cp 16512 0
usbhid 31108 0
snd_intel8x0 30468 0
snd_ac97_codec 62596 1 snd_intel8x0
snd_pcm 86308 1 snd_intel8x0
snd_timer 21892 1 snd_pcm
snd_page_alloc 9348 2 snd_intel8x0,snd_pcm
snd_mpu401_uart 6400 1 snd_intel8x0
snd_rawmidi 20384 1 snd_mpu401_uart
snd_seq_device 6792 1 snd_rawmidi
snd 47460 7 snd_intel8x0,snd_ac97_codec,snd_pcm,snd_
d_mpu401_uart,snd_rawmidi,snd_seq_device
ehci_hcd 37896 0
uhci_hcd 29976 0
intel_agp 16412 1
agpgart 28072 2 intel_agp
evdev 7808 1
rtc 10552 0
usbcore 106292 5 usbhid,ehci_hcd,uhci_hcd
battery 8076 0
ac 3596 0
_________________
undvd - ripping dvds should be as simple as unzip
Back to top
View user's profile Send private message
tujz
n00b
n00b


Joined: 16 Jun 2004
Posts: 30
Location: WIU

PostPosted: Wed Jun 30, 2004 4:42 pm    Post subject: Reply with quote

maybe i missed it, but how do you set the side buttons to whatever you want?
when i had windows i liked to set them to minimize and close
in gentoo, i think id like to try putting one to close and one to switch workspaces
_________________
May the Lord bless you real good.
Back to top
View user's profile Send private message
Spiffster
Tux's lil' helper
Tux's lil' helper


Joined: 27 Jun 2004
Posts: 119
Location: Nærum, Denmark

PostPosted: Wed Jun 30, 2004 9:00 pm    Post subject: /etc/X11/Xmodmap Reply with quote

I've seen a couple of questions regarding /etc/X11/Xmodmap in this thread. However, I've not seen anyone answer the question. With Gnome and GDM this seems to be non-functional.

I've been messing with this both for keyboard and mouse configuration. Although it is probably possible to make it work with some local (user) configuration, I would like to use the system-wide approach.

Does anyone have an explanation of why Gnome does not use /etc/X11/Xmodmap anymore. I have verified that it is indeed loaded from the gdm startup scripts, but there must be something loaded in the users profile, that disables this.. Hmm..

I guess it can be found somewhere in /etc/skel as well, since I have just installed the machine.

Update: Hmm. It seems the pointer-remapping works fine from /etc/X11/Xmodmap, but keyboard remappings do not. I guess this is offtopic then.

/Spiff
Back to top
View user's profile Send private message
Hivemind
n00b
n00b


Joined: 15 Jul 2004
Posts: 22

PostPosted: Thu Jul 15, 2004 7:36 pm    Post subject: Reply with quote

hitting a brick wall here...
Explorer optical v 1.1 7 button.
xev only sees the standard 3 buttons
the xf86config file mouse snippet:
Code:
Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "ExplorerPS/2"
    Option "Device"      "/dev/usbmouse"
    Option "Buttons"    "7"
    Option "ZAxisMapping"       "6 7"                                          $
    Option "Resolution" "1200"
EndSection


the bottom of the global xinitrc file:
Code:
xmodmap -e "pointer = 1 2 3 6 7 4 5"
imwheel -k -b "67" -p &


xev doesn't see a thing beyond the 3rd button
USB port connected, mouse works normally otherwise
kernel 2.6.7 R10 Kde 3.2.3

help.
Back to top
View user's profile Send private message
The_Fang
Tux's lil' helper
Tux's lil' helper


Joined: 25 Dec 2003
Posts: 75

PostPosted: Tue Jul 20, 2004 11:22 am    Post subject: Reply with quote

Its not working..... at least the xmodmap is not. I dont know why, but imwheel seems to be working.

I'using Gentoo Linux 2.6.7-gentoo-r11 with Xorg and KDE 3.2.2.

Please say me in which file i gotta write what stuff. I tried every file you guys recommended and is existent in my system. I even created some of the files but it still doesn't work :(
When I type that stuff in manually wheel works.


EDIT:
I just realized that the wheel works on the KDE-Desktop. I am able to switch between the work-screens (Arbeitsfläche) by scrolling the wheel. However, the wheel still does not work in applications like Firefox or Konqueror.
_________________
Any society that would give up a little liberty to gain a little security will deserve neither and lose both.
Back to top
View user's profile Send private message
timbo
Apprentice
Apprentice


Joined: 29 Jul 2002
Posts: 231
Location: New Zealand

PostPosted: Wed Jul 21, 2004 12:38 am    Post subject: Reply with quote

Here is something odd... I've got an Intelliemouse exploder and have set it up like this thread taks and it's worked fine for ages, including thumb buttons.

I've recently moved to kernel version 2.6.7-gentoo-r11 from running 2.4 kernel versions. Now the mouse works great BUT it's sooooo slow, move it left right up down and it's like the accel is way down, the same for all WM's fluxbox, KDE etc...

Has anyone had this happen. I put psmouse_resolution=200 into my grub config file but when the kernel boot's it disregards that command.

Regards
Tim
8)
_________________
Linux User: 303160
Back to top
View user's profile Send private message
tad
Tux's lil' helper
Tux's lil' helper


Joined: 12 Sep 2003
Posts: 82
Location: Portland, OR (5-to-tha-Izzo-3)

PostPosted: Wed Jul 21, 2004 2:03 am    Post subject: Reply with quote

BackSeat wrote:
Anyone using a Microsoft Wireless Optical Mouse 2.0?

I was using an Intellimouse, and that worked fine. I used the middle button (ie, clicking the wheel) in Galeon to open a link in a new tab. The Wireless Optical Mouse works fine too, but the middle button doesn't always work. One difference between the two mice is that the original Intellimouse has detents on the wheel whereas the Optical Mouse doesn't: it is a smooth rolling action.

It seems to me that the wheel can sometimes be in a position where, for some reason, X doesn't recognise the middle button down event (although xev seems to see them OK). Hmm, thought just occurs to me: this mouse has the tilting wheel, so perhaps I'm inadvertently tilting the wheel when I click. Has anyone configured a tilting wheel to work under X?

BS


Check out my post here:
https://forums.gentoo.org/viewtopic.php?t=198534
Back to top
View user's profile Send private message
cyon
n00b
n00b


Joined: 08 Sep 2004
Posts: 9

PostPosted: Thu Sep 09, 2004 8:28 am    Post subject: Intelli mouse messup Reply with quote

Ok followed alll the directions as supplied previoulsy in this forum even went so far as to try the imwheel option...
The scroll will only work with "4 5" set refuses to work if I set it as "6 7" . Havent tried using the extra buttons yet.


Here's my Xorg:
Section "InputDevice"

Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Buttons" "7"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"

# Option "Resolution" "100"

_________________
Whatever floats ur boat
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6  Next
Page 5 of 6

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum