Skip to content

Commit

Permalink
Hey Quick Keyboard v1
Browse files Browse the repository at this point in the history
  • Loading branch information
JahnStar committed Sep 17, 2023
1 parent e330f67 commit de93757
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Binary file modified HeyQuickKeyboard.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Hey Quick Keyboard is an AutoHotkey script that adds useful shortcuts and improv
## Features

- You can toggle the script on or off with Win + CapsLock (It is enabled by default.)
- To use the numpad keys, you can press the number keys from 0 to 9 without pressing Shift, Win or AltrGr keys. You can also create Alt codes with the Alt key and use numpad operators, please check the [Shortcuts](#shortcuts) section below.
- To use the numpad keys, you can press the number keys from 0 to 9 without pressing Shift, Win or AltGr keys. You can also create Alt codes with the Alt key and use numpad operators, please check the [Shortcuts](#shortcuts) section below.
- To use the tab keys, you can use Pause for switch a window that displays all open windows, PgUp and PgDn switches between open windows in Windows from left to right or the opposite.
- To take a screenshot of the entire screen and saves it to the Pictures\Screenshots folder, you can use PrtSc. And Ctrl + PrtSc takes a screenshot and copies it to the clipboard.
- For Windows operations, Ctrl + Alt + F4 force quit the active window, Win + F5 restarts Explorer and clears temp files.
Expand Down
5 changes: 3 additions & 2 deletions script/HeyQuickKeyboard.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
; Win + CapsLock to toggle it on or off

; Numpad
; !(Shift | Win | AltrGr) + 0-9 = Numpad 0-9
; !(Shift | Win | AltGr) + 0-9 = Numpad 0-9
; Alt + . = Numpad .
; Left Alt + / = Numpad /
; Left Alt + - = Numpad -
Expand Down Expand Up @@ -449,7 +449,7 @@ HelpLabel:
hotkeyInfo := "Hey Quick Keyboard v1.0`nWin + CapsLock to toggle it on or off`n`n"
; Numpad
hotkeyInfo .= "Numpad`n"
hotkeyInfo .= "!(Shift | Win | AltrGr) + 0-9 = Numpad 0-9`n"
hotkeyInfo .= "!(Shift | Win | AltGr) + 0-9 = Numpad 0-9`n"
hotkeyInfo .= "Alt + . = Numpad .`n"
hotkeyInfo .= "Left Alt + / = Numpad /`n"
hotkeyInfo .= "Left Alt + - = Numpad -`n"
Expand Down Expand Up @@ -482,4 +482,5 @@ hotkeyInfo .= "Mouse`n"
hotkeyInfo .= "Menu Key = Middle Click`n"
hotkeyInfo .= "Left Alt + Arrow Keys = Scroll Wheel`n"
MsgBox, %hotkeyInfo%`nDeveloped by Halil Emre Yildiz`nGithub: @JahnStar
Run, https://github.com/JahnStar/Hey-Quick-Keyboard/
return

0 comments on commit de93757

Please sign in to comment.