Skip to content

Instantly share code, notes, and snippets.

@jgornick
Created December 7, 2008 01:39
Show Gist options
  • Save jgornick/33007 to your computer and use it in GitHub Desktop.
Save jgornick/33007 to your computer and use it in GitHub Desktop.
AutoHotkey Script for Apple Keyboard
/*
AutoHotkey Script
Use this script to map the Apple command key to the Alt Key and vice-versa.
This also fixes the alt-tab issues.
*/
; We don't need to see a tray icon
#NoTrayIcon
; Peform the map
LWin::Alt
Alt::LWin
; Fix the alt-tab issue
; http://www.autohotkey.com/docs/misc/Remap.htm#AltTab
*Tab::Send {Blind}{Tab}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment