Initialized burrow-gtk project

This commit is contained in:
reesericci 2023-07-01 12:25:56 -05:00 committed by dav
parent 759311e4f4
commit 7eec6e73c4
26 changed files with 1534 additions and 1 deletions

View file

@ -0,0 +1,24 @@
using Gtk 4.0;
ShortcutsWindow help_overlay {
modal: true;
ShortcutsSection {
section-name: "shortcuts";
max-height: 10;
ShortcutsGroup {
title: C_("shortcut window", "General");
ShortcutsShortcut {
title: C_("shortcut window", "Show Shortcuts");
action-name: "win.show-help-overlay";
}
ShortcutsShortcut {
title: C_("shortcut window", "Quit");
action-name: "app.quit";
}
}
}
}