Created
February 7, 2015 23:32
-
-
Save L1fescape/f33091bf7699808d1f56 to your computer and use it in GitHub Desktop.
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
; Map ctrl-backspace to delete (similar to MacOS) | |
^BS:: | |
Send {DEL} | |
return | |
; Map Caps lock to escape | |
Capslock::Esc | |
; Toggles default audio device in Control Panel (switches between headset and speakers). | |
!s:: | |
ScrollLock:: | |
toggle:=!toggle ;toggles up and down states. | |
Run, mmsys.cpl | |
WinWait,Sound | |
if toggle | |
ControlSend,SysListView321,{Down 5} | |
Else | |
ControlSend,SysListView321,{Down 8} | |
ControlClick,&Set Default | |
ControlClick,OK | |
return | |
; Opens Sound Menu | |
!m:: | |
Run, mmsys.cpl | |
return | |
; Screenshot | |
!c:: | |
Run, "C:\Windows\Sysnative\SnippingTool.exe" | |
WinWait,Snipping Tool | |
ControlFocus, Snipping Tool | |
WinWait,Snipping Tool | |
Send {CTRL down}{N down} | |
Send {CTRL up}{N up} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment