initial commit

This commit is contained in:
2025-12-02 16:51:17 +01:00
commit f1434656cd
33 changed files with 6126 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using Gtk 4.0;
using Adw 1;
Adw.ShortcutsDialog {
Adw.ShortcutsSection {
title: _("Shortcuts");
Adw.ShortcutsItem {
title: _("Show Shortcuts");
action-name: "app.shortcuts";
}
Adw.ShortcutsItem {
title: _("Quit");
action-name: "app.quit";
}
}
}