User Tools

Site Tools


autohotkey_recipes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
autohotkey_recipes [2017/09/17 18:22] – [Winkey shortcut overrides] tkbletscautohotkey_recipes [2017/10/23 20:00] (current) tkbletsc
Line 22: Line 22:
 #^Escape::Edit #^Escape::Edit
  
-; Win+Backtick = Sleep +; Win+F12 = Sleep 
-#`::DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)+#F12::DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)
  
 ; 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}
 +
 +
 </file> </file>
  
Line 144: 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.  The script below will remap these to Win+Ctrl+<key>, which you can bind to apps without issue.+Windows by default binds Win+X, Win+B, and Win+Space to stuff I don't care about.  The script below will remap these to media keys or other key combos that apps can hook without issue.
 <file> <file>
 ; WinAmp+Launchy remaps ; WinAmp+Launchy remaps
Line 152: Line 157:
 #v::Media_Stop #v::Media_Stop
 #b::Media_Next #b::Media_Next
-#space::^#Space+#space::Send ^+{Space} 
 +; ^ Win+Space -> Ctrl+Shift+Space
  
 ; old simple winamp remaps -- the newer ones above let it work for non-winamps, such as spotify ; old simple winamp remaps -- the newer ones above let it work for non-winamps, such as spotify
autohotkey_recipes.1505697774.txt.gz · Last modified: 2017/09/17 18:22 by tkbletsc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki