Skip to content

Instantly share code, notes, and snippets.

@sethetter
Created January 6, 2016 17:16
Show Gist options
  • Save sethetter/bccd39e7163f23b840f9 to your computer and use it in GitHub Desktop.
Save sethetter/bccd39e7163f23b840f9 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
var exec = require('child_process').exec;
// TODO: COOOLLLOOORRRSSSSS
setInterval(function() {
process.stdout.write('\u001B[2J\u001B[0;0f');
exec('git status', function(err, stdout, stderr) {
console.log(stdout);
});
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment