Last active
September 8, 2024 18:42
-
-
Save TheGP/c11e188894eabb384393e38b88b2f671 to your computer and use it in GitHub Desktop.
windows setup to make more like mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SharpKeys install and | |
| swap left ctrl and alt | |
| capslock - home | |
| NumLock - turn off | |
| Ins - turn off | |
| .ahk file put in startup folder and install https://www.autohotkey.com/ | |
| C:\Users\gp\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| ; https://superuser.com/questions/514409/how-to-use-ctrlspace-to-switch-between-input-methods-on-windows-8 | |
| ^space::#space | |
| ; screenshots | |
| ^+4::Send, #+S | |
| ; This file by Alan J. Hogan | |
| ; https://alanhogan.com/tips/swap-left-alt-and-ctrl-keys-in-windows | |
| ; Switches the left Control and Alt keys. | |
| LCtrl::Alt | |
| LAlt::Ctrl | |
| CapsLock::Home | |
| NumLock::Suspend | |
| Ins::Suspend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment