diff --git a/example/run.sh b/example/run.sh index 96dd9a1..4b1a919 100755 --- a/example/run.sh +++ b/example/run.sh @@ -1,3 +1,3 @@ #!/bin/bash cd "$(dirname "${BASH_SOURCE[0]}")" -../hudkit "file://$PWD/page.html" +../hudkit $@ "file://$PWD/page.html" diff --git a/readme.md b/readme.md index ecda474..24f29d8 100644 --- a/readme.md +++ b/readme.md @@ -16,9 +16,7 @@ using a fullscreen transparent web view for. - Small executable. Uses native GTK and WebKit libraries. - Supports modern web APIs like WebSockets, WebAudio, WebGL, etc. -Platforms:  :heavy\_check\_mark: Linux (X11)  :no\_entry\_sign: -~~Linux (Wayland)~~  :no\_entry\_sign: ~~Windows~~  :no\_entry\_sign: -~~OS X~~ (but see https://github.com/progrium/topframe!) +Platforms:   ✔️ Linux (X11) 🚫 [~~Linux (Wayland)~~](https://github.com/anko/hudkit/issues/20)  🚫 [~~Windows~~](https://github.com/anko/hudkit/issues/19)  🚫 [~~OS X~~](https://github.com/progrium/topframe) ## Quick start @@ -27,8 +25,7 @@ cd /tmp git clone https://github.com/anko/hudkit.git cd hudkit make -cd example -./run.sh +./example/run.sh ``` If `make` complains, check [dependencies](#dependencies). @@ -42,6 +39,8 @@ contains some explanatory comments, so it might make a good starting point for your experiments. If you come up with a (fairly compact) example of your own, please PR. +To open Web Inspector targeting the example page, `./example/run.sh --inspect`. + ## Usage ```