• Stars
    star
    9,083
  • Rank 3,747 (Top 0.08 %)
  • Language
    Go
  • License
    MIT License
  • Created almost 3 years ago
  • Updated 24 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Terminal based presentation tool

Slides

Slides in your terminal.

Slides Presentation

Installation

Homebrew Snapcraft AUR

Instructions

MacOS

brew install slides

Arch

yay -S slides

Nixpkgs (unstable)

nix-env -iA nixpkgs.slides

Any Linux Distro running snapd

sudo snap install slides

Go

go install github.com/maaslalani/slides@latest

From source:

git clone https://github.com/maaslalani/slides.git
cd slides
go install

You can also download a binary from the releases page.

Usage

Create a simple markdown file that contains your slides:

# Welcome to Slides
A terminal based presentation tool

---

## Everything is markdown
In fact, this entire presentation is a markdown file.

---

## Everything happens in your terminal
Create slides and present them without ever leaving your terminal.

---

## Code execution
```go
package main

import "fmt"

func main() {
  fmt.Println("Execute code directly inside the slides")
}
```

You can execute code inside your slides by pressing `<C-e>`,
the output of your command will be displayed at the end of the current slide.

---

## Pre-process slides

You can add a code block with three tildes (`~`) and write a command to run *before* displaying
the slides, the text inside the code block will be passed as `stdin` to the command
and the code block will be replaced with the `stdout` of the command.

```
~~~graph-easy --as=boxart
[ A ] - to -> [ B ]
~~~
```

The above will be pre-processed to look like:

┌───┐  to   ┌───┐
│ A │ ────> │ B │
└───┘       └───┘

For security reasons, you must pass a file that has execution permissions
for the slides to be pre-processed. You can use `chmod` to add these permissions.

```bash
chmod +x file.md
```

Checkout the example slides.

Then, to present, run:

slides presentation.md

If given a file name, slides will automatically look for changes in the file and update the presentation live.

slides also accepts input through stdin:

curl http://example.com/slides.md | slides

Go to the first slide with the following key sequence:

  • g g

Go to the next slide with any of the following key sequences:

  • space
  • right
  • down
  • enter
  • n
  • j
  • l
  • Page Down
  • number + any of the above (go forward n slides)

Go to the previous slide with any of the following key sequences:

  • left
  • up
  • p
  • h
  • k
  • N
  • Page Up
  • number + any of the above (go back n slides)

Go to a specific slide with the following key sequence:

  • number + G

Go to the last slide with the following key:

  • G

Search

To quickly jump to the right slide, you can use the search function.

Press /, enter your search term and press Enter
(The search term is interpreted as a regular expression. The /i flag causes case-insensitivity.).

Press ctrl+n after a search to go to the next search result.

Code Execution

If slides finds a code block on the current slides it can execute the code block and display the result as virtual text on the screen.

Press ctrl+e on a slide with a code block to execute it and display the result.

Pre-processing

You can add a code block with three tildes (~) and write a command to run before displaying the slides, the text inside the code block will be passed as stdin to the command and the code block will be replaced with the stdout of the command. Wrap the pre-processed block in three backticks to keep proper formatting and new lines.

```
~~~graph-easy --as=boxart
[ A ] - to -> [ B ]
~~~
```

The above will be pre-processed to look like:

┌───┐  to   ┌───┐
│ A │ ────> │ B │
└───┘       └───┘

For security reasons, you must pass a file that has execution permissions for the slides to be pre-processed. You can use chmod to add these permissions.

chmod +x file.md

Configuration

slides allows you to customize your presentation's look and feel with metadata at the top of your slides.md.

This section is entirely optional, slides will use sensible defaults if this section or any field in the section is omitted.

---
theme: ./path/to/theme.json
author: Gopher
date: MMMM dd, YYYY
paging: Slide %d / %d
---
  • theme: Path to json file containing a glamour theme, can also be a link to a remote json file which slides will fetch before presenting.
  • author: A string to display on the bottom-left corner of the presentation view. Defaults to the OS current user's full name. Can be empty to hide the author.
  • date: A string that is used to format today's date in the YYYY-MM-DD format. If the date is not a valid format, the string will be displayed. Defaults to YYYY-MM-DD.
  • paging: A string that contains 0 or more %d directives. The first %d will be replaced with the current slide number and the second %d will be replaced with the total slides count. Defaults to Slide %d / %d. You will need to surround the paging value with quotes if it starts with %.

Date format

Given the date January 02, 2006:

Value Translates to
YYYY 2006
YY 06
MMMM January
MMM Jan
MM 01
mm 1
DD 02
dd 2

SSH

Slides is accessible over ssh if hosted on a machine through the slides serve [file] command.

On a machine, run:

slides serve [file]

Then, on another machine (or same machine), ssh into the port specified by the slides serve [file] command:

ssh 127.0.0.1 -p 53531

You will be able to access the presentation hosted over SSH! You can use this to present with slides from a computer that doesn't have slides installed, but does have ssh. Or, let your viewers have access to the slides on their own computer without needing to download slides and the presentation file.

Alternatives

Credits: This project was heavily inspired by lookatme.

Development

See the development documentation

More Repositories

1

invoice

Command line invoice generator
Go
1,654
star
2

nap

Code snippets in your terminal
Go
1,612
star
3

gambit

Play chess in your terminal
Go
728
star
4

typer

Typing test in your terminal
Go
452
star
5

draw

Draw in your terminal
Go
424
star
6

confetty

Confetti in your TTY
Go
372
star
7

crow

Run commands when files change.
Go
144
star
8

glyphs

Unicode symbols on the command line
Go
61
star
9

_

dotfiles
Nix
40
star
10

notion-todo

Command Line Interface for adding notion todo tasks
Python
36
star
11

cue

Cue cards in your terminal
Go
23
star
12

quote

Generate aesthetic quote images
Elm
20
star
13

Dungeon

A text-based adventure game coded in Java.
Java
19
star
14

vangogh

CLI for artistic image manipulation.
Go
12
star
15

maaslalani.github.io

My personal website.
HTML
9
star
16

twttr

Twitter in the terminal
Go
8
star
17

gitscrape

A tool that allows you to to enter a repository or organization and retrieve information on all contributors, stargazers, and forkers.
JavaScript
8
star
18

JustFocus

Website blocker.
HTML
8
star
19

reminders

CLI for Reminders.app
Rust
7
star
20

ntbk

CLI for managing notes
Rust
7
star
21

startup-cli

CLI for startup ideas.
JavaScript
6
star
22

CookieDB

NoSQL-like structured data in the browser.
JavaScript
6
star
23

vim.world

A collaborative space for VIM users
JavaScript
5
star
24

Codev

Coding tutorials for everyone.
HTML
3
star
25

awkward.nvim

Evaluate AWK expressions within neovim
Lua
3
star
26

MafiaList

Companies founded by X-Company employees
JavaScript
3
star
27

PicturePerfect

Analyzing social media profiles to discover potential mental illnesses.
Python
3
star
28

scribble

Better writing.
Swift
2
star
29

Dorsbon

A computer assistant to improve your posture.
Python
2
star
30

Pomodoro

A pomodoro timer.
JavaScript
2
star
31

ProjectFolded

Origami as a service.
HTML
2
star
32

Euley

CLI for using projecteuler.net offline.
JavaScript
2
star
33

OffsetList

Companies that have committed to offsetting their carbon emissions.
JavaScript
2
star
34

FounderRewind

Old interviews of famous people, showing their beginnings.
HTML
2
star
35

UnicornFarmer

Cookie Clicker with shopify and unicorns
JavaScript
1
star
36

dotfiles

~
Shell
1
star