Skip to content

Instantly share code, notes, and snippets.

@notlmn
Created February 26, 2019 12:53
Show Gist options
  • Select an option

  • Save notlmn/75a2b9a205b51da13016624f81b5f4c9 to your computer and use it in GitHub Desktop.

Select an option

Save notlmn/75a2b9a205b51da13016624f81b5f4c9 to your computer and use it in GitHub Desktop.
AutoHotKey script
#SingleInstance Force
; Little laptop thingy icon
Menu, Tray, Icon, shell32.dll, 16
; Disable some useless keys on keyboard
SetNumLockState, AlwaysOn
SetCapsLockState, AlwaysOff
; Use F7-F10 as media keys
F7::Send {Volume_Down}
F8::Send {Volume_Mute}
F9::Send {Volume_Up}
F10::Send {Media_Play_Pause}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment