33 lines
774 B
Python
33 lines
774 B
Python
|
|
||
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
def RemoveArgs(Execline):
|
||
|
NewExecline = []
|
||
|
Specials=["\"%c\"", "%f","%F","%u","%U","%d","%D","%n","%N","%i","%c","%k","%v","%m","%M", "-caption", "/bin/sh", "sh", "-c", "STARTED_FROM_MENU=yes"]
|
||
|
for elem in Execline:
|
||
|
elem = elem.replace("'","")
|
||
|
elem = elem.replace("\"", "")
|
||
|
if elem not in Specials:
|
||
|
print elem
|
||
|
NewExecline.append(elem)
|
||
|
return NewExecline
|
||
|
|
||
|
# Actually execute the command
|
||
|
def Execute( cmd ):
|
||
|
if isinstance( cmd, str ):
|
||
|
if (cmd.find("/home/") >= 0):
|
||
|
print "running manually..."
|
||
|
os.system(cmd + " &")
|
||
|
return True
|
||
|
cmd = cmd.split()
|
||
|
cmd = RemoveArgs(cmd)
|
||
|
try:
|
||
|
os.chdir( os.path.expanduser( "~" ) )
|
||
|
subprocess.Popen( cmd )
|
||
|
return True
|
||
|
except Exception, detail:
|
||
|
print detail
|
||
|
return False
|
||
|
|