document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ;media keys
  2. ^!Left::Send   {Media_Prev}
  3. ^!Down::Send   {Media_Play_Pause}
  4. ^!Right::Send  {Media_Next}
  5. +^!Left::Send  {Volume_Down}
  6. +^!Down::Send  {Volume_Mute}
  7. +^!Right::Send {Volume_Up}
  8.  
  9. ;ctrl-shift-c in any app loads and searches google
  10. ^+c::
  11. {
  12. Send, ^c
  13. Sleep 50
  14. Run, http://www.google.com/search?q=%clipboard%
  15. Return
  16. }
');