audio-router icon indicating copy to clipboard operation
audio-router copied to clipboard

Feature Request: Minimize to tray

Open nop opened this issue 8 years ago • 5 comments

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.

nop avatar Oct 27 '17 21:10 nop

Duplicate of #61

leowinterde avatar Nov 27 '17 20:11 leowinterde

+1

totomaze avatar Apr 14 '18 02:04 totomaze

+1

hhenne1 avatar Jun 29 '18 23:06 hhenne1

  • 2 :'(

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.

ExtraCelestial avatar Nov 13 '20 09:11 ExtraCelestial

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

lilgandhi1199 avatar Nov 13 '20 21:11 lilgandhi1199