Change the default hotkey to Win+alt+space (#405)

Title

This is just a much simpler keybind. It harkens the mind to `alt+space`, without actually stealing that keybinding. 

I recommend `ctrl+alt+space` for the dev version (though, I'm not setting that for you)
This commit is contained in:
Mike Griese
2025-02-06 05:39:57 -06:00
committed by GitHub
parent 96404f02b2
commit 2f3efa3e46

View File

@@ -22,7 +22,7 @@ public partial class SettingsModel : ObservableObject
///////////////////////////////////////////////////////////////////////////
// SETTINGS HERE
public HotkeySettings? Hotkey { get; set; } = new HotkeySettings(true, true, false, false, 0xBE);
public HotkeySettings? Hotkey { get; set; } = new HotkeySettings(true, false, true, false, 0x20); // win+alt+space
public bool ShowAppDetails { get; set; }