GWSL-Source
GWSL-Source copied to clipboard
All apps cannot be launched from shortcut
trafficstars
I found that some applications cannot be launched from a shortcut. I believe the reason is that the app wants pty or stdin or something like that.
In manage.py in run() and runs() functions the target command is run using nohup, this prevents such apps from starting.
From CMD, this doesn't work:
wsl.exe ~ -d RMB64 . ~/.profile;nohup /bin/sh -c rmb & This works: wsl.exe ~ -d RMB64 . ~/.profile; /bin/sh -c rmb &
Best solution would probably be to make the use of nohup a configurable option.