Project

General

Profile

Global Hotkey in Windows

Added by Sebastian S. almost 9 years ago

How can I assign global hotkeys using audacious in windows?


Replies (3)

RE: Global Hotkey in Windows - Added by John Lindgren almost 9 years ago

You can't currently, since the Global Hotkeys plugin requires X11.

RE: Global Hotkey in Windows - Added by Sebastian S. almost 9 years ago

Oh, ok, thank you anyway.

RE: Global Hotkey in Windows - Added by meta tech over 6 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

    (1-3/3)