mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-07-03 13:54:44 +08:00
22 lines
1.2 KiB
Bash
Executable File
22 lines
1.2 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
MANIM_SLIDES_THEME=light poetry run manim render -qk -s --format png --resolution 2560,1280 static/logo.py && mv media/images/logo/*.png static/logo.png
|
|
|
|
ln -f -r -s static/logo.png docs/source/_static/logo.png
|
|
|
|
MANIM_SLIDES_THEME=dark_docs poetry run manim render -qk -s --format png --resolution 2560,1280 static/logo.py && mv media/images/logo/*.png static/logo_dark_docs.png
|
|
|
|
ln -f -r -s static/logo_dark_docs.png docs/source/_static/logo_dark_docs.png
|
|
|
|
MANIM_SLIDES_THEME=dark_github poetry run manim render -qk -s --format png --resolution 2560,1280 static/logo.py && mv media/images/logo/*.png static/logo_dark_github.png
|
|
|
|
ln -f -r -s static/logo_dark_github.png docs/source/_static/logo_dark_github.png
|
|
|
|
MANIM_SLIDES_THEME=light poetry run manim render -t -qk -s --format png --resolution 2560,1280 static/logo.py && mv media/images/logo/*.png static/logo_light_transparent.png
|
|
|
|
ln -f -r -s static/logo_light_transparent.png docs/source/_static/logo_light_transparent.png
|
|
|
|
MANIM_SLIDES_THEME=dark_docs poetry run manim render -t -qk -s --format png --resolution 2560,1280 static/logo.py && mv media/images/logo/*.png static/logo_dark_transparent.png
|
|
|
|
ln -f -r -s static/logo_dark_transparent.png docs/source/_static/logo_dark_transparent.png
|