A collection of commands that change the Arc Browser icon on macOS.
| Theme | Command |
|---|---|
| Candy Arc | defaults write company.thebrowser.Browser currentAppIconName candy |
| var http = require('http'); | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| const URL = "http://blabla/server.log"; | |
| const FILE = "server.log"; | |
| var download = function(url, dest, cb) { | |
| var file = fs.createWriteStream(path.join(__dirname, dest)); | |
| http.get(url, function(response) { |