public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] [OT] application to configure mouse
@ 2017-12-13  8:56 pat
  2017-12-13 17:10 ` wabe
  0 siblings, 1 reply; 6+ messages in thread
From: pat @ 2017-12-13  8:56 UTC (permalink / raw
  To: Gentoo User

Hi,

Sorry for this offtopic, but is there a UI standalone application to 
configure mouse? I'm using fluxbox and don't want to install gnome or 
kde.

Thanks

Pat

----------------------------------------
Freehosting PIPNI - http://www.pipni.cz/



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] [OT] application to configure mouse
  2017-12-13  8:56 [gentoo-user] [OT] application to configure mouse pat
@ 2017-12-13 17:10 ` wabe
  2017-12-13 21:47   ` R0b0t1
  0 siblings, 1 reply; 6+ messages in thread
From: wabe @ 2017-12-13 17:10 UTC (permalink / raw
  To: gentoo-user

pat@xvalheru.org wrote:

> Hi,
> 
> Sorry for this offtopic, but is there a UI standalone application to
> configure mouse? I'm using fluxbox and don't want to install gnome or
> kde.

You didn't say what parameters you want to configure. For speed, 
acceleration and threshold you can use xset. But be warned, it has no
GUI.

--
Regards
wabe


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] [OT] application to configure mouse
  2017-12-13 17:10 ` wabe
@ 2017-12-13 21:47   ` R0b0t1
  2017-12-13 23:35     ` Neil Bothwick
  2017-12-13 23:45     ` Simon Thelen
  0 siblings, 2 replies; 6+ messages in thread
From: R0b0t1 @ 2017-12-13 21:47 UTC (permalink / raw
  To: gentoo-user

On Wed, Dec 13, 2017 at 11:10 AM, wabe <wabenbau@gmail.com> wrote:
> pat@xvalheru.org wrote:
>
>> Hi,
>>
>> Sorry for this offtopic, but is there a UI standalone application to
>> configure mouse? I'm using fluxbox and don't want to install gnome or
>> kde.
>
> You didn't say what parameters you want to configure. For speed,
> acceleration and threshold you can use xset. But be warned, it has no
> GUI.
>

The problem with xset is that removing the device and restarting will
remove the commands. It is good to have a settings daemon, but I don't
know of one.

R0b0t1.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] [OT] application to configure mouse
  2017-12-13 21:47   ` R0b0t1
@ 2017-12-13 23:35     ` Neil Bothwick
  2017-12-13 23:45     ` Simon Thelen
  1 sibling, 0 replies; 6+ messages in thread
From: Neil Bothwick @ 2017-12-13 23:35 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

On Wed, 13 Dec 2017 15:47:05 -0600, R0b0t1 wrote:

> >> Sorry for this offtopic, but is there a UI standalone application to
> >> configure mouse? I'm using fluxbox and don't want to install gnome or
> >> kde.  
> >
> > You didn't say what parameters you want to configure. For speed,
> > acceleration and threshold you can use xset. But be warned, it has no
> > GUI.
> >  
> 
> The problem with xset is that removing the device and restarting will
> remove the commands. It is good to have a settings daemon, but I don't
> know of one.

You could run xset from a udev ADD rule.


-- 
Neil Bothwick

FINE: Tax for doing wrong. Tax: fine for doing fine.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] [OT] application to configure mouse
  2017-12-13 21:47   ` R0b0t1
  2017-12-13 23:35     ` Neil Bothwick
@ 2017-12-13 23:45     ` Simon Thelen
  2017-12-13 23:48       ` Simon Thelen
  1 sibling, 1 reply; 6+ messages in thread
From: Simon Thelen @ 2017-12-13 23:45 UTC (permalink / raw
  To: gentoo-user

On 17-12-13 at 15:47, R0b0t1 wrote:
> On Wed, Dec 13, 2017 at 11:10 AM, wabe <wabenbau@gmail.com> wrote:
> > pat@xvalheru.org wrote:
> >> Hi,
> >>
> >> Sorry for this offtopic, but is there a UI standalone application to
> >> configure mouse? I'm using fluxbox and don't want to install gnome or
> >> kde.
> > You didn't say what parameters you want to configure. For speed,
> > acceleration and threshold you can use xset. But be warned, it has no
> > GUI.
> The problem with xset is that removing the device and restarting will
> remove the commands. It is good to have a settings daemon, but I don't
> know of one.
You can take every option settable through xset and set it in
/etc/X11/xorg.conf.d . That will then make sure the options are set
every time X starts. You can also take the xset command and write it
into ~/.xinitrc if you don't have root.

I have a 05-mouse.conf containing:
Section "InputClass"
	Identifier "Kingsis Peripherals ZOWIE Gaming mouse"
	MatchIsPointer "on"
	Option "AccelerationProfile" "-1"
EndSection

You can look for the xorg.conf variable names you need in xorg.conf(5),
or just google it.

-- 
Simon Thelen


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] [OT] application to configure mouse
  2017-12-13 23:45     ` Simon Thelen
@ 2017-12-13 23:48       ` Simon Thelen
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Thelen @ 2017-12-13 23:48 UTC (permalink / raw
  To: gentoo-user

On 17-12-14 at 00:45, Simon Thelen wrote:
> On 17-12-13 at 15:47, R0b0t1 wrote:
> > On Wed, Dec 13, 2017 at 11:10 AM, wabe <wabenbau@gmail.com> wrote:
> > > pat@xvalheru.org wrote:
> > >> Hi,
> > >>
> > >> Sorry for this offtopic, but is there a UI standalone application to
> > >> configure mouse? I'm using fluxbox and don't want to install gnome or
> > >> kde.
> > > You didn't say what parameters you want to configure. For speed,
> > > acceleration and threshold you can use xset. But be warned, it has no
> > > GUI.
> > The problem with xset is that removing the device and restarting will
> > remove the commands. It is good to have a settings daemon, but I don't
> > know of one.
> You can take every option settable through xset and set it in
> /etc/X11/xorg.conf.d . That will then make sure the options are set
> every time X starts. You can also take the xset command and write it
> into ~/.xinitrc if you don't have root.
Just a note here, if you put the command in your .xinitrc removing and
re-adding the device will probably reset the settings, but the
xorg.conf.d approach should be permanent (works for me without issues).

-- 
Simon Thelen


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-12-13 23:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-13  8:56 [gentoo-user] [OT] application to configure mouse pat
2017-12-13 17:10 ` wabe
2017-12-13 21:47   ` R0b0t1
2017-12-13 23:35     ` Neil Bothwick
2017-12-13 23:45     ` Simon Thelen
2017-12-13 23:48       ` Simon Thelen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox