Codebase list xapp / 0f28d18 files / usr / bin / upload-system-info
0f28d18

Tree @0f28d18 (Download .tar.gz)

upload-system-info @0f28d18

4563487
 
0f28d18
4563487
 
0f28d18
4563487
0f28d18
 
 
4563487
#!/usr/bin/python3

import subprocess, os

inxi = subprocess.Popen(['inxi', '-Fxxrzc0'], stdout=subprocess.PIPE)
pastebin = subprocess.Popen(['/usr/bin/pastebin'], stdin=inxi.stdout, stdout=subprocess.PIPE)
inxi.stdout.close()
output = pastebin.communicate()[0]
output = output.split()[0] # if we have more than one URL, only use the first one
pastebin.wait()
subprocess.call(['xdg-open', output])