Skip to content

Instantly share code, notes, and snippets.

@skullteria
Created October 2, 2019 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skullteria/b11249209dac3a9301b401d0e4fe4eb8 to your computer and use it in GitHub Desktop.
Save skullteria/b11249209dac3a9301b401d0e4fe4eb8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<p><button onclick="minimize()">test</button></p>
<script>
function minimize(){
const { remote } = require('electron');
remote.BrowserWindow.getFocusedWindow().minimize();
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment