Skip to content

Commit

Permalink
Update screen shortcut to improve speed typing
Browse files Browse the repository at this point in the history
  • Loading branch information
renanborgez committed Jun 26, 2024
1 parent ea701b8 commit c758737
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ You can always check and update the shortcuts [here](src/index.ts).
"alt" + "cmd" + "down"|move window to "bottom"
"alt" + "cmd" + "left"|move window to "left"
"alt" + "cmd" + "right"|move window to "right"
"alt" + "cmd" + "1"|move window to screen number 1
"alt" + "cmd" + "2"|move window to screen number 2
"alt" + "cmd" + "3"|move window to screen number 3
"shift" + "ctrl" + "keypad1"|move window to screen number 1
"shift" + "ctrl" + "keypad2"|move window to screen number 2
"shift" + "ctrl" + "keypad3"|move window to screen number 3
"alt" + "cmd" + "."|move window to next screen
"alt" + "cmd" + ","|move window to previous number
"alt" + "cmd" + "end"|minimize all windows but keep current in open and in focus
Expand Down
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ Key.on("up", MODIFIER, () => moveWindowTo2("top"));
Key.on("down", MODIFIER, () => moveWindowTo2("bottom"));
Key.on("left", MODIFIER, () => moveWindowTo2("left"));
Key.on("right", MODIFIER, () => moveWindowTo2("right"));
Key.on("1", MODIFIER, () => toScreen2(1));
Key.on("2", MODIFIER, () => toScreen2(2));
Key.on("3", MODIFIER, () => toScreen2(3));
Key.on("keypad1", ["shift", "ctrl"], () => toScreen2(1));
Key.on("keypad2", ["shift", "ctrl"], () => toScreen2(2));
Key.on("keypad3", ["shift", "ctrl"], () => toScreen2(3));
Key.on(".", MODIFIER, () => toScreen2("next"));
Key.on(",", MODIFIER, () => toScreen2("previous"));
Key.on("end", MODIFIER, () => minimizeAllButCurrent2());
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ Key.on("right", MODIFIER, () => moveWindowTo("right"));
/**
* Screen key bindings
*/
Key.on("1", MODIFIER, () => toScreen(1));
Key.on("2", MODIFIER, () => toScreen(2));
Key.on("3", MODIFIER, () => toScreen(3));
Key.on("keypad1", ["shift", "ctrl"], () => toScreen(1));
Key.on("keypad2", ["shift", "ctrl"], () => toScreen(2));
Key.on("keypad3", ["shift", "ctrl"], () => toScreen(3));

Key.on(".", MODIFIER, () => toScreen("next"));
Key.on(",", MODIFIER, () => toScreen("previous"));
Expand Down

0 comments on commit c758737

Please sign in to comment.