code / slides

Lines549 Python392 Markdown127 make18 Text12
(29 lines)

slides - A terminal slide presenter

Slides is a simple terminal application that uses btui.

Running

To run the slides program from this directory, run this command to set up a python virtual environment with the necessary requirements:

make virtualenv

Then, you can view a markdown file by running ./slides.py sample.md

Building

If you want to create a standalone executable that can be installed, run:

make

...which will build a standalone executable file called ./dist/slides/slides

Installing

To install, run make install or make PREFIX=/usr/local install if you want to install to a location other than ~/.local/bin.

1 # slides - A terminal slide presenter
3 Slides is a simple terminal application that uses [btui](https://github.com/bruce-hill/btui).
5 ## Running
7 To run the slides program from this directory, run this command to set up a
8 python virtual environment with the necessary requirements:
10 ```
11 make virtualenv
12 ```
14 Then, you can view a markdown file by running `./slides.py sample.md`
16 ## Building
18 If you want to create a standalone executable that can be installed, run:
20 ```
21 make
22 ```
24 ...which will build a standalone executable file called `./dist/slides/slides`
26 ## Installing
28 To install, run `make install` or `make PREFIX=/usr/local install` if you want
29 to install to a location other than `~/.local/bin`.