Write.as GTK desktop app https://write.as/apps/desktop
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
457 B

  1. public class WriteAs.Application : Gtk.Application {
  2. construct {
  3. Intl.setlocale(LocaleCategory.ALL, "");
  4. Intl.textdomain("write.as");
  5. application_id = "write-as-gtk.desktop";
  6. }
  7. public override void activate() {
  8. if (get_windows().length() == 0)
  9. new Gtk.ApplicationWindow(this).show_all();
  10. }
  11. public static int main(string[] args) {
  12. return new WriteAs.Application().run(args);
  13. }
  14. }