I'm developing a gnome shell extensions, which should execute a Python program. It includes:

GLib.spawn_sync(null, ['python', '-c', '"import os"'], null, 4, null)

This line make the entire shell crash, even if I run it in the looking glass.

link|improve this question

feedback

1 Answer

You should not spawn_sync processes from the shell. This means that the shell will lock up until your process returns. For some reason, the shell does not tolerate this and perish. Use spawn_async and it will work fine.

link|improve this answer
That make sense but other gnome extensions use spawn_sync and it doesn't make it blows. – e-satis Jan 19 at 22:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.