Advertisement
asuperpower

Untitled

Apr 26th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;remapped function keys to do multimedia stuff
  2. ^F1::run %windir%\System32\SndVol.exe -r 49490633 ;runs volume controls
  3. ^F5::Media_Prev
  4. ^F6::Media_Play_Pause
  5. ^F7::Media_Next
  6.  
  7. ;remapping keys for browsing
  8. #z::
  9.  
  10. ;remapps broken right_arrow key
  11. AppsKey::Right
  12.  
  13. ;---example for system mapping for application launching with windows key
  14. #s::run K:\Programs\Steam\Steam.exe
  15. ^#s::run G:\Program Files\Avid\Sibelius 7\Sibelius.exe
  16. ;---end example
  17.  
  18. ;launches command prompt when typing windows+c, why doesn't windows have this by default?
  19. #c::run C:\Windows\System32\CMD.exe
  20.  
  21. ;google searches highlighted text
  22. ^F12::
  23. send, ^c
  24. sleep 50
  25. run, https://www.google.com.au/search?q=%clipboard%
  26. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement