Skip to content

LedFx Start Stop scripts for Windows

Yeon Vinzenz Varapragasam edited this page Nov 23, 2020 · 2 revisions

Here are some example bat-files:

Start LedFx running via anaconda

  • Change the anaconda path to yours: E:\Users\Blade\anaconda3
  • Change the venv name from led to yours: call %root%\Scripts\activate.bat led
  • change the ledfx path: call cd dev

ledfx-start-conda.bat

@echo off
title yzledfx
MODE CON COLS=30 LINES=3
E:

set root=E:\Users\Blade\anaconda3

call %root%\Scripts\activate.bat led

call cd dev

call ledfx -v

Start LedFx is running via exe

  • Change ledfx path to yours: E:\Program Files (x86)\LedFx\LedFx\LedFx.exe

ledfx-start-exe.bat

@echo off
title yzledfx
#MODE CON COLS=30 LINES=3

call "E:\Program Files (x86)\LedFx\LedFx\LedFx.exe"

Stop LedFx Conda

ledfx-stop.bat

@echo off
taskkill /FI "WINDOWTITLE eq yzledfx"

Stop LedFx exe

@echo off
taskkill /FI "WINDOWTITLE eq LedFx"