bugfixing

This commit is contained in:
Michael H.G. Schmidt 2023-01-20 22:26:36 +01:00
parent 58a9faa45b
commit d8231cc881

View File

@ -18,15 +18,13 @@ set B=%3
echo ####### %0 ####### echo ####### %0 #######
echo Removing the desktop wallpaper ... isuseradmin
reg add "HKCU\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f 1>nul if %ERRORLEVEL% == 0 (
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters echo Copying AEROLITE theme ...
copy /Y %CONFIG%\aerolite.theme %THEMES%
echo Setting the desktop colour ... )
%TOOLS%\setbgcol %R% %G% %B%
echo Activating AEROLITE theme ... echo Activating AEROLITE theme ...
copy /Y %CONFIG%\aerolite.theme %THEMES%
@echo on @echo on
powershell -command "Start-Process %THEMES%\aerolite.theme" powershell -command "Start-Process %THEMES%\aerolite.theme"
@echo off @echo off
@ -36,6 +34,13 @@ ping 127.0.0.1 -n 5 > NUL 2>&1
taskkill /F /IM SystemSettings.exe 2>nul taskkill /F /IM SystemSettings.exe 2>nul
echo Removing the desktop wallpaper ...
reg add "HKCU\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f 1>nul
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
echo Setting the desktop colour ...
%TOOLS%\setbgcol %R% %G% %B%
echo ####### %0 ####### echo ####### %0 #######
GOTO END GOTO END
@ -44,3 +49,4 @@ echo "usage: %0 <R> <G> <B>"
echo. echo.
:END :END