diff options
Diffstat (limited to 'examples/vala/simple-bar/app.vala')
-rw-r--r-- | examples/vala/simple-bar/app.vala | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/vala/simple-bar/app.vala b/examples/vala/simple-bar/app.vala new file mode 100644 index 0000000..ccd3957 --- /dev/null +++ b/examples/vala/simple-bar/app.vala @@ -0,0 +1,14 @@ +class Application : Astal.Application { + Application() { + + } + + public override void activate () { + this.add_window(new Bar()); + } + + public static int main() { + var app = new Application(); + return app.run(null); + } +} |