Created
February 16, 2013 07:49
-
-
Save libraplanet/4965992 to your computer and use it in GitHub Desktop.
theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SETLOCAL | |
@GOTO :main | |
:settheme | |
@CALL "%~dp0..\theme\%1.themepack" | |
@GOTO :EOF | |
:main | |
@echo %1 | |
@IF "%1" == "classic" ( | |
@net stop themes | |
@CALL :settheme classic | |
@goto :EOF | |
) | |
@IF "%1" == "visual" ( | |
@net start themes | |
@CALL :settheme visual | |
@GOTO :EOF | |
) | |
@ENDLOCAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment