https://github.com/eazar001/mousetrap
A utility that hides the mouse after a specified interval of time has elapsed without activity.
https://github.com/eazar001/mousetrap
ergonomics hide linux mouse x11
Last synced: 5 months ago
JSON representation
A utility that hides the mouse after a specified interval of time has elapsed without activity.
- Host: GitHub
- URL: https://github.com/eazar001/mousetrap
- Owner: eazar001
- License: mit
- Created: 2016-07-30T01:45:31.000Z (almost 10 years ago)
- Default Branch: develop
- Last Pushed: 2018-09-03T16:03:38.000Z (almost 8 years ago)
- Last Synced: 2025-11-27T18:38:02.361Z (7 months ago)
- Topics: ergonomics, hide, linux, mouse, x11
- Language: Python
- Size: 23.4 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
mousetrap
=========
A utility that hides the mouse after a specified interval of time has elapsed
without activity.
What is this?
-------------
This is a small utility for linux desktops that hides the mouse during periods of inactivity. When the user does need to use the mouse again, the mouse pointer will be unhidden so that normal use can resume. Some users tend to get distracted when reading or working with a mouse pointer that sits over the content. This is very similar to programs like `hhp`, `hhpc`, `unclutter`, etc.
The process flow of `mousetrap` is as follows:
1. There is no activity for user-specified amount of time (i.e. 6 seconds)
2. Mouse is hidden
3. Mouse is used, and subsequently unhidden
4. Go back to step 1
If there is activity (i.e. click or movement) before the amount of time has elapsed in step 1, then the timer is reset and control remains in step 1.
What's wrong with the others?
-----------------------------
The other programs I've encountered had one or more of the following issues:
* Resets the timer on motion, but not on button presses
* Resets the timer on button presses, but not on motion
* Reactivates mouse on click, but does not register the click on the window
* Program predictably fails after a short amount of time
* Does not work on tiling window managers like mine (Xmonad WM)
* Works on tiling window managers, but fails to hide when sitting in between windows
The mere presence of any of the above issues is sufficient for me not to use such a program.
How do I install this?
----------------------
Do you have Arch Linux? Great, if so you can skip the rest of the instructions at the bottom and install it directly from the AUR: https://aur.archlinux.org/packages/mousetrap/
Otherwise, In order to build this application you need to install `Python` >= 3.0 (https://www.python.org)
After the installation, you may proceed to the first step below.
First, install with::
$ python setup.py install
Then, assuming that the path you installed `mousetrap` to is in your `$PATH`::
$ mousetrap -t 10
The `-t` flag specifies your preferred idle time, in seconds. All flag options are _absolutely_ mandatory.
Issues
------
Some users have reported seeing an error of the form::
Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'Invalid MIT-MAGIC-COOKIE-1 key'
@deepakshantilalshah claims that the example command below is a workaround for such issues::
DISPLAY=:0 mousetrap -t 10
See https://github.com/eazar001/mousetrap/issues/5 for more information.