Autohotkey Download Mac

Make Windows PC's shortcut act like macOS (Mac OS X)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
AutoHotKey script that allows you to use an Apple Magic Keyboard in Windows 10 with Apple familiar keyboard shortcuts. This is a very nice tool to have if like me you use an Apple Magic Keyboard and regularly switch between Windows and Mac. AutoHotkey – Mac OSX AutoHotkey (AHK) is a free, open-source macro-creation and automation software for Windows that allows users to automate repetitive tasks. It is driven by a scripting language that was initially aimed at providing keyboard shortcuts, otherwise known as hotkeys, that over time evolved into a full-fledged scripting language.
Note that
- You should disable the
Between input languages
shotcut fromControl PanelClock, Language, and RegionLanguageAdvanced settings > Change lanugage bar hot keys
because it conflicts withcmd + shift + ↑ / ↓ / ← / →
(select text between cursor and top / bottom / beginning of line / end of line) - you shouldn't change the modifier keys mapping with keyboard DIP. This script assumes you use a standard PC keyboard layout, and wish to use shortcuts as if it was a mac keyboard layout.
you want to press | keyboard sends signal to PC | AutoHotKey tells Windows |
---|---|---|
cmd + c | alt + c | ctrl + c |
cmd + v | alt + v | ctrl + v |
cmd + r | alt + r | F5 |
cmd + ↑ | alt + ↑ | Home |
cmd + shift + [ | alt + shift + [ | ctrl + shift + Tab |
... | ... | ... |
To Run
Autohotkey Download Mac Iso
- Install https://www.autohotkey.com/
- Copy and save the content of
mac.ahk
in a text file, named asmac.ahk
- Double click on
mac.ahk
file
Auto start after PC startup
Place mac.ahk
file (or make a shortcut) at C:Users<USERNAME>AppDataRoamingMicrosoftWindowsStart MenuProgramsStartup
Key Clicker
; Boot Camp AutoHotkey Bindings |
; |
; Removes some of the 'Damn you, muscle memory' involved with Boot Camp |
; |
; AutoHotkey |
; -- |
; This is free and unencumbered software released into the public domain. |
; Anyone is free to copy, modify, publish, use, compile, sell, or |
; distribute this software, either in source code form or as a compiled |
; binary, for any purpose, commercial or non-commercial, and by any |
; means. |
; In jurisdictions that recognize copyright laws, the author or authors |
; of this software dedicate any and all copyright interest in the |
; software to the public domain. We make this dedication for the benefit |
; of the public at large and to the detriment of our heirs and |
; successors. We intend this dedication to be an overt act of |
; relinquishment in perpetuity of all present and future rights to this |
; software under copyright law. |
; THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, |
; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
; IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
; OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
; ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
; OTHER DEALINGS IN THE SOFTWARE. |
; For more information, please refer to <http://unlicense.org/> |
#SingleInstance |
; Delete key |
!Backspace::Delete |
; Natural scrolling |
WheelDown::WheelUp |
WheelUp::WheelDown |
; Ctrl vs Command |
LWin::LCtrl |
LCtrl::LWin |
RWin::RCtrl |
; RCtrl::RWin |
; Some shortcut remapping |
^Tab::!Tab |
^W::!F4 |
#Right::^#Right ; Workspace changing |
#Left::^#Left |
^Right::End ; Text Navigation |
^Left::Home |
#LButton::RButton |
#IfWinActive ahk_class ConsoleWindowClass; Make Ctrl and Cmd + C behave as expected in terminal |
^C::Send { Enter } |
#C::Send { ^C } |
#IfWinActive |