This repository has been archived by the owner on May 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Windows 10 - Theme Changer | ||
|
||
## Description | ||
These are a simple set of scripts written in PowerShell (and then converted to executables) which let you change your Windows 10 system theme without needing to open any app for this. | ||
|
||
## Installation | ||
1. Grab the latest release ZIP from the [GitHub Releases](https://github.com/pratyakshm/Win10-Theme/releases) page. | ||
2. Extract the ZIP file and run Install.exe. | ||
|
||
## Usage | ||
Open your Run dialog box (done by pressing Win key + R) | ||
To switch to: | ||
**dark theme**, write ``dark`` and press ``Enter``. | ||
**light theme**, write ``light`` and press ``Enter``. | ||
|
||
## Why this project? | ||
It is too tedious for me to switch themes in Windows 10, so I made this simple project to achieve that. | ||
|
||
## Contributors | ||
- [PS2-EXE GUI](https://gallery.technet.microsoft.com/scriptcenter/PS2EXE-GUI-Convert-e7cb69d5) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$Theme = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" | ||
Set-ItemProperty $Theme AppsUseLightTheme -Value 0 | ||
Set-ItemProperty $Theme SystemUsesLightTheme -Value 0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$Theme = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" | ||
Set-ItemProperty $Theme AppsUseLightTheme -Value 1 | ||
Set-ItemProperty $Theme SystemUsesLightTheme -Value 1 |