kando-menu / kando

🥧 The Cross-Platform Pie Menu.
https://ko-fi.com/schneegans
Other
3.1k stars 89 forks source link

Application Launch with Arguments #699

Closed itguy327 closed 1 week ago

itguy327 commented 1 week ago

Short Summary

I'm unable to launch OBS using arguments. The below line has been tried with multiple variations. Likely I am missing something simple but would appreciate some insight

"C:\Program Files\obs-studio\bin\64bit\obs64.exe" --profile "Camera" --collection "Camera" "C:\Program Files\obs-studio\bin\64bit\obs64.exe" --profile Camera --collection Camera "C:\Program Files\obs-studio\bin\64bit\obs64.exe --profile Camera --collection Camera"

Steps to Reproduce the Issue

  1. Open the editor by using the tray icon
  2. Click on ...
  3. ... ...

Kando Version

latest

Installation Method

Via an installer downloaded from a release on GitHub

Desktop Environment

Windows

Environment Version

Windows 10

Additional Information

No response

Schneegans commented 1 week ago

Hi there! Have you tried running this from the command line (cmd)? Is any error message printed or shown?

Schneegans commented 1 week ago

I am pretty sure that you cannot simply run the obs64.exe. If you open the link in your start menu you'll see that it has the "Start in" property set. So you'll either have to change to that directory first or use the link instead. Both of these could work (I am using --help here for testing this):

cd "C:\Program Files\obs-studio\bin\64bit" && "C:\Program Files\obs-studio\bin\64bit\obs64.exe" --help
start "" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\OBS Studio\OBS Studio (64bit).lnk" --help
itguy327 commented 1 week ago

Thank you. I knew I was missing something. Appreciate the help and all the work.