Skip to content

Instantly share code, notes, and snippets.

@rmacqueen
rmacqueen / browser.js
Created August 18, 2015 14:57
Minimal webkit example in GJS
const Gtk = imports.gi.Gtk;
const WebKit2 = imports.gi.WebKit2;
Gtk.init(null);
let webview = new WebKit2.WebView();
webview.load_uri('http://www.google.com');
let mwindow = new Gtk.Window({
default_width: 600,
default_height: 400