From d8231cc881573ab6a0c6f5300738c0413f2e4c59 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Fri, 20 Jan 2023 22:26:36 +0100 Subject: [PATCH] bugfixing --- scripts/modify-desktoptheme.cmd | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/scripts/modify-desktoptheme.cmd b/scripts/modify-desktoptheme.cmd index 333e4c8..6b743cf 100644 --- a/scripts/modify-desktoptheme.cmd +++ b/scripts/modify-desktoptheme.cmd @@ -18,15 +18,13 @@ set B=%3 echo ####### %0 ####### -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% +isuseradmin +if %ERRORLEVEL% == 0 ( + echo Copying AEROLITE theme ... + copy /Y %CONFIG%\aerolite.theme %THEMES% +) echo Activating AEROLITE theme ... -copy /Y %CONFIG%\aerolite.theme %THEMES% @echo on powershell -command "Start-Process %THEMES%\aerolite.theme" @echo off @@ -36,6 +34,13 @@ ping 127.0.0.1 -n 5 > NUL 2>&1 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 ####### GOTO END @@ -44,3 +49,4 @@ echo "usage: %0 " echo. :END +