More configuration work

This commit is contained in:
TheXamlGuy
2024-01-06 21:33:53 +00:00
parent 36c718c07e
commit 28af62d72d
14 changed files with 102 additions and 29 deletions
@@ -1,6 +1,10 @@
namespace Hyperbar.Windows.Primary;
public class PrimaryWidgetConfiguration :
List<IPrimaryCommandConfiguration>
List<KeyAcceleratorCommandConfiguration>
{
public static PrimaryWidgetConfiguration Defaults => new()
{
new KeyAcceleratorCommandConfiguration { Icon = "Test", Key = "Test", Modifiers = ["Test", "Test"] }
};
}