Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.08 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.08 KB

MMM-Cursor

Cursor show/hide module for MagicMirror². Displays cursor when user moves mouse and hide after delay.

Screenshot

screenshot

Installation

In your terminal, go to your MagicMirror's module folder:

cd ~/MagicMirror/modules

Clone this repository:

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:

    {
      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:

cd ~/MagicMirror/modules/MMM-Cursor
git pull