https://github.com/uxigene/MMM-Cursor
Cursor show/hide module for MagicMirror²
https://github.com/uxigene/MMM-Cursor
Last synced: 7 months ago
JSON representation
Cursor show/hide module for MagicMirror²
- Host: GitHub
- URL: https://github.com/uxigene/MMM-Cursor
- Owner: uxigene
- License: mit
- Created: 2017-09-10T23:50:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-08T07:52:40.000Z (over 1 year ago)
- Last Synced: 2025-10-11T20:12:19.530Z (8 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 27
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-mmm - **MMM-Cursor**
README
# MMM-Cursor
Cursor show/hide module for [MagicMirror²](https://github.com/MagicMirrorOrg/MagicMirror). Displays cursor when user moves mouse and hide after delay.
## Screenshot

## Installation
In your terminal, go to your MagicMirror's module folder:
```bash
cd ~/MagicMirror/modules
```
Clone this repository:
```bash
git clone https://github.com/uxigene/MMM-Cursor
```
Configure the module in your `config.js` file.
## Configuration
To use this module, add it to the modules array in the `config/config.js` file:
```javascript
{
module: "MMM-Cursor",
config: {
timeout: 1500
}
},
```
## Configuration options
The following property can be configured:
| Option | Description |
|-----------|-------------------------------------------------|
| `timeout` | Delay time in ms.
**Default value**: `1000` |
## Update
Go to the module’s folder inside MagicMirror modules folder and pull the latest version from GitHub and install:
```bash
cd ~/MagicMirror/modules/MMM-Cursor
git pull
```