aboutsummaryrefslogtreecommitdiff
path: root/comet.c
blob: 5a64235070c63be08f601d8c802611a67a97611c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <glib.h>
#include <glib-unix.h>

#include "x11.h"
#include "draw.h"

int main(int argc, char **argv)
{
    Window *win = window_create();

    draw(win);
    sleep(10);

    window_destroy(win);
    return 0;
}

// vim: ts=4 sw=4 et