Launching Executable opens Minimized Application. #867
-
As my title says. I'd like the application to open if the executable is launched again. Is this possible? I use an application called hotkeyD with a bunch of batch scripts I've made. The script looks like this:
Even some argument like "-max" would be great and would work for my usage case. I've tried the /max argument for start but it does nothing. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
You can see the available parameters on this wiki page: There are however currently no parameters for unminimizing and unmaximizing the application window or giving it focus again if it's not in focus, so this would have to be implemented first. These window related parameters are however meant as launch parameters, to configure auto-start behavior for example, and not for controlling the app window by launching secondary instances. That should be done via the system's window manager, especially when setting up hotkeys. At least that's how it's done in the non-Windows world.
These parameter notations are Windows specific and not POSIX compliant. I just noticed that I forgot to update the --launch parameter for the 2.0.0 release. This needs to be fixed. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I should also clarify. I want streamlink-twitch-gui to pop up when I press my hotkey. If you exec the .exe while its already open it does nothing. It'd be great if it'd pop up if that's possible. |
Beta Was this translation helpful? Give feedback.
You can see the available parameters on this wiki page:
https://github.com/streamlink/streamlink-twitch-gui/wiki/Parameters
There are however currently no parameters for unminimizing and unmaximizing the application window or giving it focus again if it's not in focus, so this would have to be implemented first.
These window related parameters are however meant as launch parameters, to configure auto-start behavior for example, and not for controlling the app window by launching secondary instances. That should be done via the system's window manager, especially when setting up hotkeys. At least that's how it's done in the non-Windows world.
These parameter notations are Windo…