Skip to content

Commit

Permalink
Switching Super keys to map to "meta"
Browse files Browse the repository at this point in the history
  • Loading branch information
smithkyle committed Feb 10, 2025
1 parent d8ff4e7 commit e7007ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions providers/libnut/lib/libnut-keyboard.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,16 @@ export default class KeyboardAction implements KeyboardProviderInterface {
[Key.RightWin, "right_win"],
[Key.LeftCmd, "cmd"],
[Key.RightCmd, "right_cmd"],
[Key.LeftMeta, "meta"],
[Key.RightMeta, "right_meta"],

[Key.Menu, "menu"],
[Key.Fn, "fn"],

[Key.LeftShift, "shift"],
[Key.LeftSuper, "command"],
[Key.LeftSuper, "meta"],
[Key.LeftMeta, "meta"],
[Key.RightShift, "right_shift"],
[Key.RightSuper, "command"],
[Key.RightSuper, "right_meta"],
[Key.RightMeta, "right_meta"],

[Key.Grave, "`"],
[Key.Minus, "-"],
Expand Down

0 comments on commit e7007ed

Please sign in to comment.