* suckless adblocking
 * integrate the WebKitWebInspector API
 * make scrollbars a switch and allow them to be disabled
-* implement fullscreen mode (F11)
 * replace webkit with something sane
 
 
     { MODKEY,               GDK_i,           scroll_h,   { .i = +1 } },
     { MODKEY,               GDK_u,           scroll_h,   { .i = -1 } },
 
+    { 0,                    GDK_F11,    fullscreen, { 0 } },
     { 0,                    GDK_Escape, stop,       { 0 } },
     { MODKEY,               GDK_o,      source,     { 0 } },
 
 
        gint progress;
        gboolean sslfailed;
        struct Client *next;
-       gboolean zoomed;
+       gboolean zoomed, fullscreen;
 } Client;
 
 typedef struct {
 static void drawindicator(Client *c);
 static gboolean exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c);
 static void find(Client *c, const Arg *arg);
+static void fullscreen(Client *c, const Arg *arg);
 static const char *getatom(Client *c, int a);
 static char *geturi(Client *c);
 static gboolean initdownload(WebKitWebView *v, WebKitDownload *o, Client *c);
        webkit_web_view_search_text(c->view, s, FALSE, forward, TRUE);
 }
 
+void
+fullscreen(Client *c, const Arg *arg) {
+       if(c->fullscreen) {
+               gtk_window_unfullscreen(GTK_WINDOW(c->win));
+       } else {
+               gtk_window_fullscreen(GTK_WINDOW(c->win));
+       }
+       c->fullscreen = !c->fullscreen;
+}
+
 const char *
 getatom(Client *c, int a) {
        static char buf[BUFSIZ];