Skip to content

Instantly share code, notes, and snippets.

View Lautar0tomas's full-sized avatar

Blas Lautar0tomas

View GitHub Profile
@alfeugds
alfeugds / README.md
Last active March 31, 2025 15:19
AutoHotkey - Media keyboard shortcuts

AutoHotkey - Media keyboard shortcuts

Control media with easy to remember keyboard shortcuts.

Even if you have a keyboard with dedicated media buttons, you'll find these keyboard shortcuts a lot easier to control the media on your computer.

  • Alt + Shift + Space : Pause/Play
  • Alt + Shift + n : Next
  • Alt + Shift + p : Previous
  • Alt + Shift + m : Mute
  • Alt + Shift + + : Volume up
@bladeSk
bladeSk / mouse cursor follows focus.ahk
Last active September 29, 2024 04:50
AutoHotKey: Make mouse cursor follow window focus
; Makes the mouse cursor follow window focus, but ONLY if the focus change
; wasn't caused by the mouse - e.g. Alt-Tab, Win+<Number>, hotkeys, ...
; Saves a lot of mousing around on multi-monitor setups!
Gui +LastFound
lastMouseClickTime := 0
hWnd := WinExist()
DllCall("RegisterShellHookWindow", UInt, hWnd)