One of the missing things on Windows is an automatic theme switcher, i.e. light to dark. Every other OS I know has it, usually based on sunrise and sunset. But not Windows. Although it is not necessary to use a theme if you only want to swith to dark or light, you do need a theme if you want a different wallpaper. I like a dark wallpaper in dark mode and a lighter one in light mode.
To scratch that itch (somewhat, it’s not perfect) this is a workaround:
$env:Onedrive\Themes
folder in this example.$themeCurrent=(Get-ItemProperty registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes -Name CurrentTheme).CurrentTheme.Split("\")[-1]
switch ($themeCurrent) {
"DARK.theme" { Start-Process -Wait -FilePath "$env:onedrive\Themes\LIGHT.theme" }
"LIGHT.theme" { Start-Process -Wait -FilePath "$env:onedrive\Themes\DARK.theme" }
Default {}
}
Stop-Process -Name "systemsettings" -Force -ErrorAction SilentlyContinue
This script looks in the registry for the current active theme and then switches to the other one. Because the Settings app will be openend, this one has to be killed. Obviously, this script only works with 2 themes.
Alternatively, use a parameter to switch to a specific theme. Had that, but prefered to have no interaction at runtime. The script example can also be used as a scheduled task to run on a event, time or whatever you want. I am a bit finnicky when it comes to dark/light, I switch based on ambient light, not time of day, I pinned a shortcut to Start for that and run it manually. I might add a hotkey to the .lnk.