I have a script. It uses GTK. And I need to know if another copy of scrip starts. If it starts window will extend.
Please, tell me the way I can detect it.
|
I have a script. It uses GTK. And I need to know if another copy of scrip starts. If it starts window will extend. Please, tell me the way I can detect it. | |||
|
feedback
|
|
You could use a D-Bus service. Your script would start a new service if none is found running in the current session, and otherwise send a D-Bus message to the running instace (that can send "anything", including strings, lists, dicts). The GTK-based library libunique (missing Python bindings?) uses this approach in its implementation of "unique" applications. | |||
|
feedback
|
|
You can use a PID file to determine if the application is already running (just search for "python daemon" on Google to find some working implementations). If you detected that the program is already running, you can communicate with the running instance using named pipes. | |||
|
feedback
|
|
The new copy could search for running copies, fire a See the | |||
|
feedback
|
|
I've done that using several ways depending upon the scenario
| |||
|
feedback
|