how to start application from browser script
didnt think this before, but i figured it out
run simple web server
then do query to localhost server from browser script
so feh-watch script launches feh image viewer when requested from browser like this:
```js
fetch("http://localhost:8000/?feh=" + [...document.querySelectorAll("figure img")].map((img, index) =>
img.dataset.original).join(";"))
```