0.1.1 • Published 4 years ago

toggle-touchpad v0.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

toggle-touchpad

Turn on/off an xinput touchpad device

Example

$ ttp --disable

Disables the touchpad; goodbye :mouse:!

$ ttp -e

Enables that touchpad back on.

$ ttp --list
   ↳ DLL0704:01 03AB:12CD Touchpad             id=11   [slave  pointer  (2)]

List the xinput Device Id for the touchpad.

Can also use this in a script:

var Toggle = require('toggle-touchpad')
var ttp = new Toggle()

if (!wantingToUseMouse) {
    ttp.disable() // touchpad disabled
} else {
    // do some code that uses the touchpad
}

License

MIT