win10-prep

Batch script to tweak Windows 10 to a more usable form
Log | Files | Refs

commit 5e7bec7ac1bb5031352cd6d8274695be98e4031b
parent 6f403f749b4570257613c82a62a933de474391e5
Author: breadcat <peter@minskio.co.uk>
Date:   Mon,  6 Jul 2020 00:33:31 +0100

Enable dark theme

Diffstat:
Mwin10-prep.bat | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/win10-prep.bat b/win10-prep.bat @@ -202,6 +202,14 @@ rem disable animations reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v MinAnimate /t REG_SZ /d 0 /f rem disable lock screen reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "1" /f +rem enable dark theme +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" /t REG_DWORD /d "1" /f +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "AppsUseLightTheme" /t REG_DWORD /d "0" /f +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "SystemUsesLightTheme" /t REG_DWORD /d "0" /f +rem dark theme colour hightlight +reg add "HKCU\Software\Microsoft\Windows\DWM" /v "ColorizationColor" /t REG_DWORD /d "3291315610" /f +reg add "HKCU\Software\Microsoft\Windows\DWM" /v "ColorizationAfterglow" /t REG_DWORD /d "3291315610" /f +reg add "HKCU\Software\Microsoft\Windows\DWM" /v "AccentColor" /t REG_DWORD /d "4288314669" /f rem blank desktop background reg add "HKCU\Control Panel\Desktop" /v "Wallpaper" /t REG_SZ /d "" /f reg add "HKCU\Control Panel\Colors" /v "Background" /t REG_SZ /d "76 74 72" /f