diff options
author | James E. Blair <corvus@gnu.org> | 2014-12-20 07:35:13 -0800 |
---|---|---|
committer | James E. Blair <corvus@gnu.org> | 2015-01-09 10:39:14 -0800 |
commit | ef9fb76de9ef299fbdc8f87f1dd05bdd1eda649e (patch) | |
tree | dc85b1dfb180f427b3686e59d6b7a8254397c1e2 /README.rst |
Initial commit
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..ddc18d4 --- /dev/null +++ b/README.rst | |||
@@ -0,0 +1,63 @@ | |||
1 | Presentty | ||
2 | ========= | ||
3 | |||
4 | Presentty is a console-based presentation program based on | ||
5 | RestructuredText. | ||
6 | |||
7 | Installation | ||
8 | ------------ | ||
9 | |||
10 | It is recommended, but not required, to install presentty in to a | ||
11 | virtualenv. To cset one up:: | ||
12 | |||
13 | virtualenv presentty-env | ||
14 | source presentty-env/bin/activate | ||
15 | |||
16 | To install the latest version from the cheeseshop:: | ||
17 | |||
18 | pip install presentty | ||
19 | |||
20 | To install from a git checkout:: | ||
21 | |||
22 | pip install . | ||
23 | |||
24 | In order to use the cross-fade transition, you must run presentty in a | ||
25 | 256-color capable terminal, such as gnome-terminal or xterm. | ||
26 | |||
27 | In order for images to render as ascii art, you must have jp2a | ||
28 | installed. | ||
29 | |||
30 | In order to use figlet and cowsay directives, their respective | ||
31 | programs must be installed. | ||
32 | |||
33 | Usage | ||
34 | ----- | ||
35 | |||
36 | Presentty takes the path to the presentation file as an argument. | ||
37 | |||
38 | To run the demonstration included with Presentty, run the following:: | ||
39 | |||
40 | presentty example/demo.rst | ||
41 | |||
42 | Other command line options are available; you can see them with:: | ||
43 | |||
44 | presentty --help | ||
45 | |||
46 | Once presentty is running, you may start an optional presenter's | ||
47 | console in another window with:: | ||
48 | |||
49 | presentty-console example/demo.rst | ||
50 | |||
51 | Once in the presenter's console, you can use the arrow keys and | ||
52 | [enter] to change the current slide, 't' to set the countdown timer | ||
53 | starting value, and [space] to start or stop the timer. | ||
54 | |||
55 | In either the presenter's console or the main presentty window, the | ||
56 | left and right arrow keys or page-up and page-down navigate between | ||
57 | slides. | ||
58 | |||
59 | License | ||
60 | ------- | ||
61 | |||
62 | Presentty is licensed under the GPLv3 or later. Please see the | ||
63 | COPYING file for details. | ||