GWSL-Source icon indicating copy to clipboard operation
GWSL-Source copied to clipboard

All apps cannot be launched from shortcut

Open henris42 opened this issue 3 years ago • 0 comments
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.

henris42 avatar Aug 09 '22 13:08 henris42