Global Hotkey in Windows
Added by Sebastian S. over 9 years ago
How can I assign global hotkeys using audacious in windows?
Replies (3)
RE: Global Hotkey in Windows - Added by John Lindgren over 9 years ago
You can't currently, since the Global Hotkeys plugin requires X11.
RE: Global Hotkey in Windows - Added by meta tech over 7 years ago
#IfWinExist, ahk_exe audacious.exe
; Previous Song
SC110::
Media_Prev::
ControlSend, ahk_parent, z, ahk_class gdkWindowToplevel
return
; Play/Pause
Media_Play_Pause::
SC122::
ControlSend, ahk_parent, c, ahk_class gdkWindowToplevel
return
; Next Song
Media_Next::
SC119::
ControlSend, ahk_parent, b, ahk_class gdkWindowToplevel
return
#IfWinExist