]> icculus.org git repositories - mikachu/openbox.git/blob - doc/python/helpers.txt
always adjust the frames size and position together, so there is no more weird resizi...
[mikachu/openbox.git] / doc / python / helpers.txt
1 helpers
2
3 ----
4
5 This document describes the 'helpers' module. The 'helpers' module provides
6 methods to make writing python scripts easier.
7
8 ----
9
10 Methods
11
12 ----
13
14 execute(path)
15
16 Forks and executes a process.
17
18         path: The executable to execute. The $PATH is searched so the full
19               path to the executable is not generally needed.
20
21 Example:
22         execute("xterm")
23
24 ----
25