Changed the cmd script to use the dark theme by default when launching the streamlit UI.

This commit is contained in:
ZeroCool940711 2022-09-11 22:49:39 -07:00
parent dee13a11c6
commit a3ae2d4a94

View File

@ -52,7 +52,7 @@ call "%CONDA_PATH%\Scripts\activate.bat" "%conda_env_name%"
:PROMPT
set SETUPTOOLS_USE_DISTUTILS=stdlib
IF EXIST "models\ldm\stable-diffusion-v1\model.ckpt" (
python -m streamlit run scripts\webui_streamlit.py
python -m streamlit run scripts\webui_streamlit.py --theme.base dark
) ELSE (
ECHO Your model file does not exist! Place it in 'models\ldm\stable-diffusion-v1' with the name 'model.ckpt'.
)