Disable mouse jiggle heartbeat messages

This commit is contained in:
Andrew Ferrazzutti 2021-10-14 20:50:13 -04:00
parent e4de88fccc
commit 2d9805afe5
1 changed files with 0 additions and 3 deletions

View File

@ -629,15 +629,12 @@ export default class MessagesPuppeteer {
}
_jiggleMouse() {
this.log("Jiggling mouse")
const initialID = this.jiggleTimerID
exec(`xdotool mousemove --sync --window ${this.windowID} 0 0`, {},
(error, stdout, stderr) => {
if (error) {
this.log(`Error while jiggling mouse: ${error}`)
} else {
this.log("Jiggled mouse")
}
if (this.jiggleTimerID == initialID) {