Skip to content

Instantly share code, notes, and snippets.

@yoannmoinet
Last active November 4, 2017 19:42
Show Gist options
  • Save yoannmoinet/0d937d95395f926f81329938782ec22f to your computer and use it in GitHub Desktop.
Save yoannmoinet/0d937d95395f926f81329938782ec22f to your computer and use it in GitHub Desktop.
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