Skip to content
This repository has been archived by the owner on May 15, 2022. It is now read-only.

Commit

Permalink
initial push
Browse files Browse the repository at this point in the history
Signed-off-by: pratyakshm <[email protected]>
  • Loading branch information
pratyakshm committed Nov 2, 2020
0 parents commit dbe024b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
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)
3 changes: 3 additions & 0 deletions dark.ps1
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
3 changes: 3 additions & 0 deletions light.ps1
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

0 comments on commit dbe024b

Please sign in to comment.