openbox/doc/python/helpers.txt
2003-03-16 21:11:39 +00:00

25 lines
364 B
Text

helpers
----
This document describes the 'helpers' module. The 'helpers' module provides
methods to make writing python scripts easier.
----
Methods
----
execute(path)
Forks and executes a process.
path: The executable to execute. The $PATH is searched so the full
path to the executable is not generally needed.
Example:
execute("xterm")
----