parent
5ff48dad9b
commit
83883821f4
2 changed files with 39 additions and 15 deletions
@ -1,14 +1,27 @@ |
|||||||
const keyCombinations: Array<{ keys: string; scans: string }> = [ |
const ControlL = '0xffe3'; |
||||||
{ keys: 'Ctrl + Alt + Del', scans: 'Optimal' }, |
const AltL = '0xffe9'; |
||||||
{ keys: 'Ctrl + Alt + F1', scans: 'Not Ready' }, |
|
||||||
{ keys: 'Ctrl + Alt + F2', scans: 'Not Ready' }, |
const F1 = '0xffbe'; |
||||||
{ keys: 'Ctrl + Alt + F3', scans: 'Not Ready' }, |
const F2 = '0xffbf'; |
||||||
{ keys: 'Ctrl + Alt + F4', scans: 'Not Ready' }, |
const F3 = '0xffc0'; |
||||||
{ keys: 'Ctrl + Alt + F5', scans: 'Not Ready' }, |
const F4 = '0xffc1'; |
||||||
{ keys: 'Ctrl + Alt + F6', scans: 'Not Ready' }, |
const F5 = '0xffc2'; |
||||||
{ keys: 'Ctrl + Alt + F7', scans: 'Not Ready' }, |
const F6 = '0xffc3'; |
||||||
{ keys: 'Ctrl + Alt + F8', scans: 'Not Ready' }, |
const F7 = '0xffc4'; |
||||||
{ keys: 'Ctrl + Alt + F9', scans: 'Not Ready' }, |
const F8 = '0xffc5'; |
||||||
|
const F9 = '0xffc6'; |
||||||
|
|
||||||
|
const keyCombinations: Array<{ keys: string; scans: string[] }> = [ |
||||||
|
{ keys: 'Ctrl + Alt + Delete', scans: [] }, |
||||||
|
{ keys: 'Ctrl + Alt + F1', scans: [ControlL, AltL, F1] }, |
||||||
|
{ keys: 'Ctrl + Alt + F2', scans: [ControlL, AltL, F2] }, |
||||||
|
{ keys: 'Ctrl + Alt + F3', scans: [ControlL, AltL, F3] }, |
||||||
|
{ keys: 'Ctrl + Alt + F4', scans: [ControlL, AltL, F4] }, |
||||||
|
{ keys: 'Ctrl + Alt + F5', scans: [ControlL, AltL, F5] }, |
||||||
|
{ keys: 'Ctrl + Alt + F6', scans: [ControlL, AltL, F6] }, |
||||||
|
{ keys: 'Ctrl + Alt + F7', scans: [ControlL, AltL, F7] }, |
||||||
|
{ keys: 'Ctrl + Alt + F8', scans: [ControlL, AltL, F8] }, |
||||||
|
{ keys: 'Ctrl + Alt + F9', scans: [ControlL, AltL, F9] }, |
||||||
]; |
]; |
||||||
|
|
||||||
export default keyCombinations; |
export default keyCombinations; |
||||||
|
Loading…
Reference in new issue