LittleVaaty / VDesk

Launch programs on new virtual desktops.
GNU General Public License v3.0
31 stars 0 forks source link

Python Scripts not working appropriately #11

Open DoS007 opened 4 months ago

DoS007 commented 4 months ago

In old vdesk, this worked: vdesk noswitch:true on:3 run:"C:\censoredpath...\test.py" where test.py is a python script.

Now vdesk run --no-switch -o 3 "C:\censoredpath...\test.py" does not work:

[...]The specified executable is not a valid application for this OS platform.[...]

Using the following method does start the program, but does not open on vdesktop 3: vdesk run --no-switch -o 3 python -a "C:\censoredpath...\test.py"

Thank you as always for this project :-).