audiorouterdev / audio-router

Routes audio from programs to different audio devices.
GNU General Public License v3.0
3.51k stars 420 forks source link

Feature Request: Minimize to tray #64

Open nop opened 6 years ago

nop commented 6 years ago

Instead of minimizing to the taskbar, I think the routing GUI should minimize to the "hidden icons" tray on the taskbar. This could alternatively be the default window close operation.

EDIT: I've just seen the pull request for this functionality. I'd contribute, but I'm not familiar with C++. I'll keep this issue open to hopefully push for this to be implemented.

leowinterde commented 6 years ago

Duplicate of #61

totomaze commented 6 years ago

+1

hhenne1 commented 6 years ago

+1

ExtraCelestial commented 3 years ago

Would really help with streaming. Listening to non-copywritten music that the stream can't hear is a blessing. Also, to get rid of it in the open programs would be even more so.

lilgandhi1199 commented 3 years ago

You can easily implement code in autohotkey to do this when you click minimize. I don't even want it on my tray though. I press Ctrl + Numpad Enter to show and hide it (it also starts it if it's not running)

^NumpadEnter:: File = Y:\Programs WINDOWS\Fancy Programs\Audio Router\Audio Router.exe proc = ( Audio Router ) Process, Exist, %proc%.exe If ErrorLevel { If (ViewProc = 1) { ViewProc = 0 WinHide, ahk_exe %proc%.exe } Else { ViewProc = 1 WinShow, ahk_exe %proc%.exe WinActivate, %proc% } } Else { ViewProc = 1 Run, %File% } return