Hi, I'd love to repurpose and use the 'crypto-watchdog' shown on the examples page and in the gif below.
https://user-images.githubusercontent.com/1294454/31798504-ca2af4cc-b53c-11e7-946c-620d744f6d16.gif
Is there any chance you can send me the javascript or include it in the examples folder?
Thanks
Hi!
I did it briefly with a few small tools, and now I can't find it in my history, but it didn't take too long. It's mostly there, check out the following:
↑ From there making such a terminal window should be straightforward.
I also used GetWindowId and screencapture + a bash script for Mac OS to take a screenshot once a minute and compile all screenshots into an accelerated gif animation.
# i=100;while [ 1 ];do screencapture -l$(../GetWindowID/GetWindowId "Terminal" "crypto-watchdog") -t jpg -x $i.jpg; let i++;sleep 60; done
i=100;while [ 1 ];do screencapture -o -l1762 -t jpg -x $i.jpg; let i++;sleep 60; done
Let me know if it answers your question. Thx!
Most helpful comment
Hi!
I did it briefly with a few small tools, and now I can't find it in my history, but it didn't take too long. It's mostly there, check out the following:
↑ From there making such a terminal window should be straightforward.
I also used GetWindowId and
screencapture+ a bash script for Mac OS to take a screenshot once a minute and compile all screenshots into an accelerated gif animation.Let me know if it answers your question. Thx!