Initial commit

This commit is contained in:
2025-09-13 17:36:46 +02:00
commit e63f321e01
48 changed files with 1179 additions and 0 deletions

9
App/Program.cs Normal file
View File

@@ -0,0 +1,9 @@
var application = Adw.Application.New("org.typomustakes.keychain", Gio.ApplicationFlags.FlagsNone);
application.OnActivate += (sender, args) =>
{
var window = new App.UI.MainWindow().Window;
window.Application = (Adw.Application)sender;
window.Show();
};
return application.RunWithSynchronizationContext(null);