Skip to content

Instantly share code, notes, and snippets.

@yoannmoinet
Last active November 4, 2017 19:42
Keep the clipboard watcher alive.
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