1
0
mirror of https://github.com/balkian/lab-in-a-box.git synced 2024-09-27 14:11:43 +00:00
lab-in-a-box/slides/run.sh

7 lines
344 B
Bash
Raw Permalink Normal View History

2018-05-21 17:30:55 +00:00
#!/bin/sh
#pandoc -t beamer slides.md --slide-level=2 -o slides.pdf -V theme:metropolis --toc --toc-depth 1 "$@"
pandoc -t revealjs -s --dpi 120 slides.md --css=style.css --slide-level=2 -o slides.html -V theme=white -V height=800 "$@"
echo "Syncing $PWD"
rsync -Paz "$PWD/" -e 'ssh -p 2222' root@slides.todevnull.com:/data/html/
echo 'Done'