This file contains 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
Gource v0.51 | |
Usage: gource [options] [path] | |
Options: | |
-h, --help Help | |
-WIDTHxHEIGHT, --viewport Set viewport size | |
-f, --fullscreen Fullscreen | |
--screen SCREEN Screen number | |
--multi-sampling Enable multi-sampling |
This file contains 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
(function() { | |
var overlay = document.createElement('div'); | |
Object.assign(overlay.style, { | |
position: 'fixed', | |
top: 0, | |
left: 0, | |
width: '100vw', | |
height: '100vh', | |
zIndex: 99999999, | |
background: 'transparent', |