Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-14 Thread Christian Zoffoli

OS wrote:
> 
> I would love to try your patch, but exactly how !!! :)
> 
> Owen
> 


cp mousedrake  /usr/sbin/mousedrake
cp mouse.pm/usr/lib/libDrakX/  


...and simply run new mousedrake.

needed packages:
- drakxtools 1.1.1-7.1mdk
- imwheel



-- 
Yours Sincerly,  __   _
  Christian Zoffoli / /  (_)__  __   __
   / /__/ / _ \/ // /\ \/ /  
 http://www.littlepenguin.org //_/_//_/_,_/ /_/_\ 
  [EMAIL PROTECTED] * *  LittlePenguin H 1   L.U.G.  * *




Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-13 Thread OS

I would love to try your patch, but exactly how !!! :)

Owen

On Sat, 13 May 2000, you wrote:
> 
>  
> Eunice Thompson wrote:
> > 
> > Hi,
> > I'm using MDK 7.1 beta
> >  I have an MS intellimouse ,ps/2.
> > I would like to have imwheel start automatically, or even be able to start
> > it as a regular user (It worked fine in v.7.02). The only way I seem to get
> > the wheel working is to change to 'su' in a terminal ,and type imwheel -k
> > and then it starts. I've tried changing the permissions but still no luck as
> > anyone other than the superuser starting this process.
> >  **I have asked this question before, but didn't get a response.
> > 
> > Eunice Thompson
> > - Original Message -
> > From: "OS" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, May 09, 2000 3:44 PM
> > Subject: Re: [Cooker] scroll wheel on logitech mouse ?
> > 
> > > Hello,
> > >
> > > So far I have tried EVERYTHING posted on the cooker site to try and
> > persuade X
> > > to use the wheel with absolutely no luck.
> > >
> > > Has anyone got any more suggestions ?!?!
> > >
> > > Owen
> > >
> 
> try my patch
> 
> 
> -- 
> Yours Sincerly,__   _
>   Christian Zoffoli / /  (_)__  __   __
>/ /__/ / _ \/ // /\ \/ /  
>  http://www.littlepenguin.org //_/_//_/_,_/ /_/_\ 
>   [EMAIL PROTECTED] * *  LittlePenguin H 1   L.U.G.  * *


Content-Type: text/plain; name="mouse.pm"
Content-Transfer-Encoding: 7bit
Content-Description: 



Content-Type: text/plain; name="mousedrake"
Content-Transfer-Encoding: 7bit
Content-Description: 





Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-13 Thread Christian Zoffoli

Eunice Thompson wrote:
> 
> Hi,
> I'm using MDK 7.1 beta
>  I have an MS intellimouse ,ps/2.
> I would like to have imwheel start automatically, or even be able to start
> it as a regular user (It worked fine in v.7.02). The only way I seem to get
> the wheel working is to change to 'su' in a terminal ,and type imwheel -k
> and then it starts. I've tried changing the permissions but still no luck as
> anyone other than the superuser starting this process.
>  **I have asked this question before, but didn't get a response.
> 
> Eunice Thompson
> - Original Message -
> From: "OS" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, May 09, 2000 3:44 PM
> Subject: Re: [Cooker] scroll wheel on logitech mouse ?
> 
> > Hello,
> >
> > So far I have tried EVERYTHING posted on the cooker site to try and
> persuade X
> > to use the wheel with absolutely no luck.
> >
> > Has anyone got any more suggestions ?!?!
> >
> > Owen
> >

try my patch


-- 
Yours Sincerly,  __   _
  Christian Zoffoli / /  (_)__  __   __
   / /__/ / _ \/ // /\ \/ /  
 http://www.littlepenguin.org //_/_//_/_,_/ /_/_\ 
  [EMAIL PROTECTED] * *  LittlePenguin H 1   L.U.G.  * *

package mouse;

# Wheel patch by Christian Zoffoli <[EMAIL PROTECTED]>


#-##
#- misc imports
#-##
use common qw(:common :system :functional :file);
use modules;
use detect_devices;
use run_program;
use devices;
use commands;
use modules;
use log;

my @mouses_fields = qw(nbuttons device MOUSETYPE XMOUSETYPE Nwheels FULLNAME);
my @mouses = (
arch() =~ /^sparc/ ? (
  [ 3, "sunmouse", "sun",   "sun",0,__("Sun - Mouse") ],
) : arch() eq "ppc" ? (
  [ 1, "adbmouse", "Busmouse",  "BusMouse",   0,__("Apple ADB Mouse") ],
  [ 2, "adbmouse", "Busmouse",  "BusMouse",   0,__("Apple ADB Mouse (2 
Buttons)") ],
  [ 3, "adbmouse", "Busmouse",  "BusMouse",   0,__("Apple ADB Mouse (3+ 
Buttons)") ],
  [ 1, "usbmouse", "imps2", "IMPS/2", 0,__("Apple USB Mouse") ],
  [ 2, "usbmouse", "imps2", "IMPS/2", 0,__("Apple USB Mouse (2 
Buttons)") ],
  [ 3, "usbmouse", "imps2", "IMPS/2", 0,__("Apple USB Mouse (3+ 
Buttons)") ],
) : (
  [ 2, "psaux", "ps/2", "PS/2",   0,__("Generic Mouse (PS/2)") ],
  [ 3, "psaux", "ps/2", "PS/2",   0,__("Logitech 
MouseMan/FirstMouse (ps/2)") ],
  [ 3, "psaux", "ps/2", "PS/2",   0,__("Generic 3 Button Mouse 
(PS/2)") ],
  [ 2, "psaux", "ps/2",  "GlidePointPS/2",0,__("ALPS GlidePoint (PS/2)") ],
  [ 5, "psaux", "ps/2",  "MouseManPlusPS/2",  1,__("Logitech 
MouseMan+/FirstMouse+ (PS/2)") ],
  [ 5, "psaux", "ps/2",  "ThinkingMousePS/2", 1,__("Kensington Thinking Mouse 
(PS/2)") ],
  [ 5, "psaux", "ps/2", "NetMousePS/2",   1,__("ASCII MieMouse (PS/2)") ],
  [ 5, "psaux", "netmouse", "NetMousePS/2",   1,__("Genius NetMouse (PS/2)") ],
  [ 5, "psaux", "netmouse", "NetMousePS/2",   1,__("Genius NetMouse Pro 
(PS/2)") ],
  [ 5, "psaux", "netmouse", "NetScrollPS/2",  1,__("Genius NetScroll (PS/2)") 
],
  [ 5, "psaux", "imps2","IMPS/2", 1,__("Microsoft IntelliMouse 
(PS/2)") ],
  [ 2, "atibm","Busmouse",  "BusMouse",   0,__("ATI Bus Mouse") ],
  [ 2, "inportbm", "Busmouse",  "BusMouse",   0,__("Microsoft Bus Mouse") ],
  [ 3, "logibm",   "Busmouse",  "BusMouse",   0,__("Logitech Bus Mouse") ],
  [ 2, "usbmouse", "ps/2",  "PS/2",   0,__("USB Mouse") ],
  [ 3, "usbmouse", "ps/2",  "PS/2",   0,__("USB Mouse (3 buttons or 
more)") ],
  [ 3, "usbmouse", "ps/2",  "IMPS/2", 1,__("Logitech TrackMan Marble 
Wheel (USB)") ],
  [ 3, "usbmouse", "ps/2",  "PS/2",   0,__("Logitech TrackMan Marble 
(USB)") ],
  [ 3, "psaux","ps/2",  "IMPS/2", 1,__("Logitech TrackMan Marble 
Wheel ") ],

),
  [ 0, "none",  "none", "Microsoft",  0,__("No Mouse") ],
  [ 2, "ttyS",  "pnp",  "Auto",   0,__("Microsoft Rev 2.1A or 
higher (serial)") ],
  [ 3, "ttyS",  "logim","MouseMan",   0,__("Logitech CC Series 
(serial)") ],
  [ 5, "ttyS",  "pnp",  "IntelliMouse",   1,__("Logitech 
MouseMan+/FirstMouse+ (serial)") ],
  [ 5, "ttyS",  "ms3",  "IntelliMouse",   1,__("ASCII MieMouse (serial)") 
],
  [ 5, "ttyS",  "ms3",  "IntelliMouse",   1,__("Genius NetMouse (serial)") 
],
  [ 5, "ttyS",  "ms3",  "IntelliMouse",   1,__("Microsoft IntelliMouse 
(serial)") ],
  [ 2, "ttyS",  "MMSeries", "MMSeries",   0,__("MM Series (serial)") ],
  [ 2, "ttyS",  "MMHitTab", "MMHittab",   0

Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-12 Thread OS

Yep, that's all set up as well. Nothing appears to pusuade X that I really do
have a wheel mouse. Or maybe imwheel really is running (well, I know it is 'cos
it has a PID !) but nothing understands what it is telling them / imwheel is
not producing any output. Whatever, it simply does not work !

Owen

On Fri, 12 May 2000, you wrote:
> "Eunice Thompson" <[EMAIL PROTECTED]> writes:
> 
> > Hi,
> > I'm using MDK 7.1 beta
> >  I have an MS intellimouse ,ps/2.
> > I would like to have imwheel start automatically, or even be able to start
> > it as a regular user (It worked fine in v.7.02). The only way I seem to get
> > the wheel working is to change to 'su' in a terminal ,and type imwheel -k
> > and then it starts. I've tried changing the permissions but still no luck as
> > anyone other than the superuser starting this process.
> >  **I have asked this question before, but didn't get a response.
> > 
> 
> You have nothing to do. imwheel is started automatically from the
> /etc/X11/xinit.d/imwheel script if your /etc/sysconfig/mouse has the
> WHEEL variable set to yes.
> 
> > Eunice Thompson
> > - Original Message -
> > From: "OS" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, May 09, 2000 3:44 PM
> > Subject: Re: [Cooker] scroll wheel on logitech mouse ?
> > 
> > 
> > > Hello,
> > >
> > > So far I have tried EVERYTHING posted on the cooker site to try and
> > persuade X
> > > to use the wheel with absolutely no luck.
> > >
> > > Has anyone got any more suggestions ?!?!
> > >
> > > Owen
> > >
> > 
> 
> -- 
> Fred - May the source be with you




Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-12 Thread Andreas Simon

Frederic Lepied wrote:

> You have nothing to do. imwheel is started automatically from the
> /etc/X11/xinit.d/imwheel script if your /etc/sysconfig/mouse has the
> WHEEL variable set to yes.

Poeple who use gdm have never one of the scripts under
/etc/X11/xinit.d/ started. Look at the scripts under
/etc/X11/gdm/Sessions. Or am I wrong?

~Andreas




Re: Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-12 Thread Frederic Lepied

"Eunice Thompson" <[EMAIL PROTECTED]> writes:

> Hi,
> I'm using MDK 7.1 beta
>  I have an MS intellimouse ,ps/2.
> I would like to have imwheel start automatically, or even be able to start
> it as a regular user (It worked fine in v.7.02). The only way I seem to get
> the wheel working is to change to 'su' in a terminal ,and type imwheel -k
> and then it starts. I've tried changing the permissions but still no luck as
> anyone other than the superuser starting this process.
>  **I have asked this question before, but didn't get a response.
> 

You have nothing to do. imwheel is started automatically from the
/etc/X11/xinit.d/imwheel script if your /etc/sysconfig/mouse has the
WHEEL variable set to yes.

> Eunice Thompson
> - Original Message -
> From: "OS" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, May 09, 2000 3:44 PM
> Subject: Re: [Cooker] scroll wheel on logitech mouse ?
> 
> 
> > Hello,
> >
> > So far I have tried EVERYTHING posted on the cooker site to try and
> persuade X
> > to use the wheel with absolutely no luck.
> >
> > Has anyone got any more suggestions ?!?!
> >
> > Owen
> >
> 

-- 
Fred - May the source be with you




Fw: [Cooker] scroll wheel on logitech mouse ?

2000-05-11 Thread Eunice Thompson

Hi,
I'm using MDK 7.1 beta
 I have an MS intellimouse ,ps/2.
I would like to have imwheel start automatically, or even be able to start
it as a regular user (It worked fine in v.7.02). The only way I seem to get
the wheel working is to change to 'su' in a terminal ,and type imwheel -k
and then it starts. I've tried changing the permissions but still no luck as
anyone other than the superuser starting this process.
 **I have asked this question before, but didn't get a response.

Eunice Thompson
- Original Message -
From: "OS" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 09, 2000 3:44 PM
Subject: Re: [Cooker] scroll wheel on logitech mouse ?


> Hello,
>
> So far I have tried EVERYTHING posted on the cooker site to try and
persuade X
> to use the wheel with absolutely no luck.
>
> Has anyone got any more suggestions ?!?!
>
> Owen
>