tjackenpacken / taskbar-groups

Lightweight utility for organizing the taskbar through groups
MIT License
2.46k stars 202 forks source link

[Missing feature] Ability to specify working directory and cmdline arguments #50

Closed CComparon closed 3 years ago

CComparon commented 3 years ago

Programs that are influenced by their initial working directory cannot be run by Taskbar Groups. Same thing with command-line arguments.

E.g. would need to be able to specify:

    <ProgramShortcut>
      <FilePath>D:\tools\OBS-Studio-portable-x64\bin\64bit\obs64.exe</FilePath>
      <WorkingDir>D:\tools\OBS-Studio-portable-x64\bin\64bit</WorkingDir>
      <Arguments>
          <Argument>--portable</Argument>
          <Argument>--verbose</Argument>
          <Argument>--profile</Argument>
          <Argument>myProfile</Argument>
      </Arguments>
    </ProgramShortcut>

Thanks a keep up the good work!

PikeNote commented 3 years ago

Command line arguments were coming to version 2 but I will look to add that aswell before release. Thanks for the request! I do have to note however that the arguments will be entered on one line; for now anyways. I will further test if that will work in your scenario.

CComparon commented 3 years ago

Many thanks for your quick reply. Not a problem if they are entered as one single string, as long as spaces and escaped double-quotes are supported ;)

tjackenpacken commented 3 years ago

This has been added in the latest release!

CComparon commented 3 years ago

You rock!