fix command

This commit is contained in:
chrys 2018-06-11 23:14:12 +02:00
parent 3ec1a57146
commit 02d8efad6b

View File

@ -26,7 +26,7 @@ class command():
try: try:
xClipboard = '' xClipboard = ''
for display in range(10): for display in range(10):
p = Popen('su ' + self.env['general']['currUser'] + ' -c "echo -n \\\"' + clipboard.replace('"','\\\\\\"') +'\\\" | xclip -d :' + str(display) + ' -o"' , stdout=PIPE, stderr=PIPE, shell=True) p = Popen('su ' + self.env['general']['currUser'] + ' -c "xclip -d :0 -o"' , stdout=PIPE, stderr=PIPE, shell=True)
stdout, stderr = p.communicate() stdout, stderr = p.communicate()
self.env['runtime']['outputManager'].interruptOutput() self.env['runtime']['outputManager'].interruptOutput()
stderr = stderr.decode('utf-8') stderr = stderr.decode('utf-8')