all repos — openbox @ f8a47de5ec444c452093371e3db16857eb39a490

openbox fork - make it a bit more like ryudo

doc/python/helpers.txt (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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")

----