A collection of commands that change the Arc Browser icon on macOS.
| Theme | Command |
|---|---|
| Candy Arc | defaults write company.thebrowser.Browser currentAppIconName candy |
# coding: utf-8
from wsgiref.simple_server import make_server
def application(env, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return [b'<h1>Hello World.</h1>']