Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<picture>
<source media="(prefers-color-scheme: dark)" srcset="docs/app/static/img/devbox_logo_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="docs/app/static/img/devbox_logo_light.svg">
<img alt="Devbox logo." src="docs/app/static/img/devbox_logo_light.svg">
<source media="(prefers-color-scheme: dark)" srcset="assets/devbox_logo_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="assets/devbox_logo_light.svg">
<img alt="Devbox logo." src="assets/devbox_logo_light.svg">
</picture>

# Devbox
Expand Down Expand Up @@ -37,7 +37,7 @@ The example below creates a development environment with `python 3.10` and
machine. You can run commands in the environment with `devbox run`, or start an
interactive shell in it with `devbox shell`:

![screen cast](docs/app/static/img/devbox_demo.svg)
![screen cast](assets/devbox_demo.svg)

## Installing Devbox

Expand Down
File renamed without changes
4 changes: 4 additions & 0 deletions assets/devbox_logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/devbox_logo_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions scripts/gen_cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
mirror what the devbox CLI actually prints today, so refresh this script when
those messages change.

To regenerate docs/app/static/img/devbox_demo.svg:
To regenerate assets/devbox_demo.svg:

python3 scripts/gen_cast.py /tmp/devbox.cast
npx svg-term-cli --in /tmp/devbox.cast \\
--out docs/app/static/img/devbox_demo.svg \\
--out assets/devbox_demo.svg \\
--window --width 84 --height 26
"""
import json
Expand Down