autohotkey_recipes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
autohotkey_recipes [2015/04/12 15:52] – tkbletsc | autohotkey_recipes [2017/10/23 20:00] (current) – tkbletsc | ||
---|---|---|---|
Line 22: | Line 22: | ||
# | # | ||
- | ; Win+Backtick | + | ; Win+F12 = Sleep |
- | #`:: | + | #F12:: |
; Win+M = toggle mute | ; Win+M = toggle mute | ||
#m::Send {Volume_Mute} | #m::Send {Volume_Mute} | ||
+ | |||
+ | ; Alt+Backtick -> Shift+Win_Right (move window to next monitor) -- a shortcut I used on Ultramon for years | ||
+ | !`::Send +#{Right} | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Hold down any key ===== | ||
+ | < | ||
+ | ; do right win key + whatever to hold that key down (if it's listed below) | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
+ | ># | ||
</ | </ | ||
Line 130: | Line 149: | ||
===== Winkey shortcut overrides ===== | ===== Winkey shortcut overrides ===== | ||
- | Windows by default binds Win+X, Win+B, and Win+Space to stuff I don't care about. | + | Windows by default binds Win+X, Win+B, and Win+Space to stuff I don't care about. |
< | < | ||
; WinAmp+Launchy remaps | ; WinAmp+Launchy remaps | ||
- | #x::#^x | + | #z::Media_Prev |
- | #b::#^b | + | #x:: |
- | #space::^#Space | + | #c::Media_Play_Pause |
+ | # | ||
+ | #b:: | ||
+ | #space::Send ^+{Space} | ||
+ | ; ^ Win+Space -> Ctrl+Shift+Space | ||
+ | |||
+ | ; old simple winamp remaps -- the newer ones above let it work for non-winamps, | ||
+ | ;#x::#^x | ||
+ | ;#b::#^b | ||
</ | </ | ||
===== Auto mouse ===== | ===== Auto mouse ===== | ||
Line 190: | Line 217: | ||
# | # | ||
</ | </ | ||
+ | |||
+ | |||
===== Suppress F1 in Explorer, Word, and Excel ===== | ===== Suppress F1 in Explorer, Word, and Excel ===== | ||
The code below will replace the annoying help popup with a low-pitched beep. Change " | The code below will replace the annoying help popup with a low-pitched beep. Change " |
autohotkey_recipes.1428879158.txt.gz · Last modified: by tkbletsc