-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
35 lines (26 loc) · 745 Bytes
/
justfile
File metadata and controls
35 lines (26 loc) · 745 Bytes
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
26
27
28
29
30
31
32
33
34
35
_default:
@just --list
rebuild:
home-manager switch -b backup -f .devcontainer/home.nix
export USER := shell("whoami")
cheats:
cheat -l
present:
presenterm slides.md
present-with-speaker-notes:
tmux kill-session -t present 2>/dev/null || true
tmux new-session -d -s present 'presenterm --listen-speaker-notes slides.md' \; \
split-window -h 'presenterm --publish-speaker-notes slides.md' \; \
attach -t present
export-presentation:
presenterm --export-html slides.md --output out/slides.html
[working-directory: 'book']
book:
mdbook serve --open
[working-directory: 'book']
build-book:
mdbook build
[working-directory: 'book']
build-book-gha:
just build-book
mv book ../_site