Last active
November 4, 2017 19:42
-
-
Save yoannmoinet/0d937d95395f926f81329938782ec22f to your computer and use it in GitHub Desktop.
Keep the clipboard watcher alive.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { powerSaveBlocker} from 'electron'; | |
let clipboardValue; | |
powerSaveBlocker.start('prevent-app-suspension'); | |
setInterval(() => { | |
clipboardValue = clipboard.readText(); | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment