change message, remove soundIcon

This commit is contained in:
chrys 2017-09-12 01:23:46 +02:00
parent 0f2606f19f
commit 8a3a3108c9

View File

@ -47,16 +47,13 @@ class command():
stdout = stdout.decode('utf-8')
if (stderr == ''):
break
else:
print(stderr)
#stderr = stderr.decode(screenEncoding, "replace").encode('utf-8').decode('utf-8')
#stdout = stdout.decode(screenEncoding, "replace").encode('utf-8').decode('utf-8')
if stderr != '':
self.env['runtime']['outputManager'].presentText(stderr , soundIcon='', interrupt=False)
else:
self.env['runtime']['outputManager'].presentText('export clipboard', soundIcon='PasteClipboardOnScreen', interrupt=True)
self.env['runtime']['outputManager'].presentText('pasted to the X session or clipboard.', interrupt=True)
except Exception as e:
print(e)
self.env['runtime']['outputManager'].presentText(e , soundIcon='', interrupt=False)
def setCallback(self, callback):