home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / onboard / scripts / sokSettings.py next >
Encoding:
Python Source  |  2006-10-09  |  179 b   |  12 lines

  1. #!/usr/bin/python
  2. import os
  3. def run(sok):
  4.     
  5.     
  6.     pid = os.fork()
  7.     if not pid:
  8.         os.execvp("python", ("python", "settings-dialog.py"))#I suppose your wondering why I did this...
  9.     
  10.  
  11.  
  12.