diff options
author | Aylur <[email protected]> | 2024-09-22 00:16:56 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-22 00:16:56 +0000 |
commit | bcd912764fb6a709284aaa07399403d045a50ef2 (patch) | |
tree | 0a313dc788e3f390aab1d810f5f59911623431ea /examples/vala/simple-bar/app.vala | |
parent | 5ae0a9ed1cba13242d12ffe2ad4848eac7dd8915 (diff) |
examples: add vala bar
Diffstat (limited to 'examples/vala/simple-bar/app.vala')
-rw-r--r-- | examples/vala/simple-bar/app.vala | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/vala/simple-bar/app.vala b/examples/vala/simple-bar/app.vala deleted file mode 100644 index ccd3957..0000000 --- a/examples/vala/simple-bar/app.vala +++ /dev/null @@ -1,14 +0,0 @@ -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); - } -} |