Browse Source

Update name of program

master
Wesley Kerfoot 5 years ago
parent
commit
5254479989
  1. 1
      .gitignore
  2. 2
      README.md
  3. 2
      build.sh

1
.gitignore

@ -1,3 +1,4 @@
*.gch
a.out
*.wav
schemekit

2
README.md

@ -11,5 +11,5 @@ A web browser you can control from your Scheme repl!
* Compile with `./build.sh`
## How to use
* Run `./a.out` after compiling and it will launch the browser.
* Run `./schemekit` after compiling and it will launch the browser.
* Run `(open-page "https://example.org")` to see it in action.

2
build.sh

@ -1,2 +1,2 @@
#! /usr/bin/bash
gcc $(pkg-config --cflags --libs guile-2.2 gtk+-3.0 webkit2gtk-4.0) browser.c
gcc $(pkg-config --cflags --libs guile-2.2 gtk+-3.0 webkit2gtk-4.0) browser.c -o schemekit

Loading…
Cancel
Save