Skip to content

Instantly share code, notes, and snippets.

@TheGP
Last active September 8, 2024 18:42
Show Gist options
  • Select an option

  • Save TheGP/c11e188894eabb384393e38b88b2f671 to your computer and use it in GitHub Desktop.

Select an option

Save TheGP/c11e188894eabb384393e38b88b2f671 to your computer and use it in GitHub Desktop.
windows setup to make more like mac
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