Skip to content

Instantly share code, notes, and snippets.

@KZhidovinov
Created January 18, 2021 10:27
Show Gist options
  • Save KZhidovinov/91a4199b4ee1fc82c263c457e90a7b66 to your computer and use it in GitHub Desktop.
Save KZhidovinov/91a4199b4ee1fc82c263c457e90a7b66 to your computer and use it in GitHub Desktop.
Windows 10 dark/light switch
# Windows 10 dark/light switch:
## Dark
```powershell
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f
```
## Light
```powershell
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v AppsUseLightTheme /t REG_DWORD /d 1 /f
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment