terminal/tools/ColorTool/all.bat
Michael Ratanapintha f757ecaa29 ColorTool: Fix the included all.bat batch file
This batch file doesn't work if you use build.bat to build
the program, as all.bat looks for ct.exe rather than colortool.exe.
Fortunately, fixing the batch file is almost as easy as working around
its bug manually.
2017-08-14 21:49:42 -07:00

15 lines
501 B
Batchfile

@echo off
rem all.bat
rem This tool can be used to iterate over all the schemes you have installed
rem To help find one that you like. Simply press Ctrl+C when you get to one you like.
rem Note: You will likely destroy your current console window's history.
rem Only the most recent theme is visible in the console.
rem All of the previously viewed tables will display the current scheme's colors.
for %%i in (schemes\*) do (
echo %%i
.\colortool.exe "%%i"
pause
)