Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > by-pkgid > 560ff335335f90eb5b9858b6748cc798 > files > 335

drpython-3.11.0-3mdv2009.1.noarch.rpm

#drscript
#This currently only works on linux (if you have rxvt installed).
#You will need to modify it otherwise.

#By Daniel Pozmanter
#Released under the GPL

import os, sys

if sys.platform.find("linux") > -1:
    pathtoterminal = "/usr/bin/X11/rxvt"
    termarg = "-e"
    withargs = ""
    if DrScript.VariableExists("RunInTerminalArgs"):
        withargs = " " + DrScript.RunInTerminalArgs
        
    pyexec = "/usr/bin/python " + DrFrame.GetFileName() + withargs
    os.spawnl(os.P_NOWAIT, pathtoterminal, pathtoterminal, termarg, pyexec)
else:
    wx.MessageBox("Only supported under Linux", "RunInTerminal", wx.OK, DrFrame)