Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.advocacy > #412062

Re: Logitech 3 button mouse

From owl <owl@rooftop.invalid>
Newsgroups comp.os.linux.advocacy
Subject Re: Logitech 3 button mouse
Date 2017-04-29 20:34 +0000
Organization O.W.L.
Message-ID <zcv793.aby@rooftop.invalid> (permalink)
References <AuGdndR9hMVCiZnEnZ2dnUU7-WvNnZ2d@giganews.com> <oe2s0802edv@news7.newsguy.com>

Show all headers | View raw


F. Russell <fr@random.info> wrote:
> On Fri, 28 Apr 2017 23:21:51 -0500, Marek Novotny wrote:
> 
>> 
>> Worth the $99 price tag? Yeah, I have to say it is. Three-button mice
>> rule. 
>> 
> 
> If you want a three-button mouse plus a scroll wheel for cheap,
> you can just purchase an ultra-miniature switch, drill a small
> hole in the mouse shell directly in front or in back of the scroll
> wheel, and glue in the switch.
> 
> Here is but one example of what is available:
> 
> http://www.mouser.com/ProductDetail/Knowles/2900-253091/?qs=WKNSk2eAW0qK1WRHoutz2Q%3d%3d
> 
> This switch is less that 2 mm in diameter.
> 
> Of course you'll have to tap into the internal leads but that
> shouldn't be a problem.
> 
> If you succeed, please post the detailed steps on some DIY forum.
> 

Or you can do this to toggle using left and right together to
emulate middle:

anon@lowtide:~$ cat mm
#!/bin/bash

id=$(xinput --list |grep "Logitech USB Optical Mouse" \
|awk '{print $7}' |cut -f'2' -d'=')
echo "id: ${id}"
state=$(xinput --list-props ${id} |grep "Evdev Middle Button Emulation" \
|awk '{print $6}')
echo "state: ${state}"

case ${state} in
   1) xinput --set-prop ${id} "Evdev Middle Button Emulation" 0
      zenity --info --text="Middle button emulation now off"
      ;;
   0) xinput --set-prop ${id} "Evdev Middle Button Emulation" 1
      zenity --info --text="Middle button emulation now on"
      ;;
   *)
      ;;
esac

anon@lowtide:~$ 

Back to comp.os.linux.advocacy | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-28 23:21 -0500
  Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 14:05 +0000
    Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 09:22 -0500
      Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 14:49 +0000
        Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 10:13 -0500
          Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 15:43 +0000
            Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 10:57 -0500
        Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 10:18 -0500
    Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-29 11:14 -0400
      Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 10:39 -0500
        Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-29 10:55 -0700
        Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-29 15:06 -0400
          Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 14:28 -0500
            Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 20:04 +0000
      Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 15:55 +0000
        Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 11:04 -0500
          Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 17:03 +0000
            Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 12:08 -0500
              Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 17:45 +0000
            Re: Logitech 3 button mouse RonB <ronb02NOSPAM@gmail.com> - 2017-04-29 21:50 +0000
          Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-29 10:53 -0700
        Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-29 15:17 -0400
  Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 20:10 +0000
    Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 20:34 +0000
      Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 20:45 +0000
        Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 21:01 +0000
          Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 22:09 +0000
            Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 23:16 +0000
              Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 23:47 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 18:53 -0500
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 23:58 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 19:03 -0500
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 01:20 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 20:35 -0500
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 02:08 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 21:22 -0500
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 03:53 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-30 00:09 -0500
                Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-30 08:08 -0400
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 17:02 +0000
                Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-30 12:08 -0500
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 12:02 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 12:03 -0700
                Re: Logitech 3 button mouse Glenn Harrison <glannharrison0@gmail.com> - 2017-05-01 16:29 +0000
                Re: Logitech 3 button mouse fr314159@gmail.com - 2017-05-01 10:31 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-05-01 12:00 -0700
                Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-05-02 05:45 -0400
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-05-02 10:16 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-29 22:21 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-29 18:42 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-29 17:10 -0700
              Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-30 14:35 +0000
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 15:31 +0000
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 16:25 +0000
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 09:48 -0700
                Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-30 17:23 +0000
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 17:32 +0000
                Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-30 17:47 +0000
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 17:58 +0000
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 11:57 -0700
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 11:52 -0700
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-30 19:55 +0000
                Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-30 22:13 +0000
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 15:18 -0700
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-05-01 01:01 +0000
                Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-05-01 10:31 +0000
                Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-05-01 13:52 +0000
                Re: Logitech 3 button mouse Snit <usenet@gallopinginsanity.com> - 2017-04-30 09:51 -0700
          Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-30 07:40 -0400
            Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-30 14:38 +0000
              Re: Logitech 3 button mouse Peter Köhlmann <peter-koehlmann@t-online.de> - 2017-04-30 18:38 +0200
                Re: Logitech 3 button mouse Steve Carroll <fretwizzer@gmail.com> - 2017-04-30 09:53 -0700
                Re: Logitech 3 button mouse Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-30 13:58 -0400
                Re: Logitech 3 button mouse chrisv <chrisv@nospam.invalid> - 2017-05-01 13:16 -0500
                Re: Logitech 3 button mouse chrisv <chrisv@nospam.invalid> - 2017-05-01 13:23 -0500
              Re: Logitech 3 button mouse DFS <nospam@dfs.com> - 2017-05-01 18:14 -0400
    Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 15:40 -0500
      Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 21:48 +0000
      Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 22:25 +0000
        Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 17:48 -0500
          Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 23:22 +0000
            Re: Logitech 3 button mouse Marek Novotny <marek.novotny@marspolar.com> - 2017-04-29 18:32 -0500
            Re: Logitech 3 button mouse "F. Russell" <fr@random.info> - 2017-04-29 23:51 +0000
              Re: Logitech 3 button mouse owl <owl@rooftop.invalid> - 2017-04-29 23:55 +0000

csiph-web