Last active
November 23, 2024 19:15
-
-
Save erbanku/eac274bc41baf6fd100013020a8de151 to your computer and use it in GitHub Desktop.
Switch between Light & Dark Mode on Windows 11 using AHK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Switch between Light & Dark Mode on Windows 11 | |
;IN THIS CASE, APPS ON WINDOWS 11 WILL USE LIGHT/DARK MODE | |
^#!A:: | |
; read current theme | |
RegRead, CurrentTheme, % "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize", % "AppsUseLightTheme" | |
; toggle between themes | |
RegWrite, REG_DWORD, % "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize", % "AppsUseLightTheme", % 1 - CurrentTheme | |
Return | |
;IN THIS CASE, SYSTEMS ON WINDOWS 11 WILL USE LIGHT/DARK MODE | |
^#!L:: | |
; read current theme | |
RegRead, CurrentTheme, % "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize", % "SystemUsesLightTheme" | |
; toggle between themes | |
RegWrite, REG_DWORD, % "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize", % "SystemUsesLightTheme", % 1 - CurrentTheme | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@erbanku, thank you! Did you check that they ran merely without errors, or that they actually achieved the desired result?
Anyway, I've transformed them, if of use. This allows them to be invoked via Windows automation software (like Task Scheduler) more easily:
Enable-DarkModeApps.PS1
Enable-LightModeApps.PS1
Enable-DarkModeSystem.PS1
Enable-LightModeSystem.PS1