Skip to content
Snippets Groups Projects
Commit 5a42905c authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

Remove confusion-causing messages.

parent e980c707
No related branches found
No related tags found
No related merge requests found
......@@ -24,10 +24,7 @@ ps = subprocess.Popen("ps -U %s uh" % os.getenv("LOGNAME"),
data = ps.stdout.read()
irkerd_count = len([x for x in data.split("\n") if x.find("irkerd") != -1])
if irkerd_count:
print "Using running irkerd..."
else:
print "Launching new irkerd..."
if not irkerd_count:
os.system("gnome-terminal --title 'irkerd' -e 'irkerd -d 2' &")
time.sleep(0.1) # Avoid a race condition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment