diff --git a/HeyQuickKeyboard.exe b/HeyQuickKeyboard.exe index 93146a4..d36afad 100644 Binary files a/HeyQuickKeyboard.exe and b/HeyQuickKeyboard.exe differ diff --git a/README.md b/README.md index 71506e4..5cc9a2f 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/script/HeyQuickKeyboard.ahk b/script/HeyQuickKeyboard.ahk index dc40b2d..9089880 100644 --- a/script/HeyQuickKeyboard.ahk +++ b/script/HeyQuickKeyboard.ahk @@ -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 - @@ -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" @@ -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 \ No newline at end of file