From c035dbb88b0124aea522ce2930df9f6ae60d6f89 Mon Sep 17 00:00:00 2001 From: Imi <27138272+iminet@users.noreply.github.com> Date: Wed, 21 Apr 2021 08:53:23 +0200 Subject: [PATCH] Update README.md --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index 604abe7..2c161b3 100644 --- a/README.md +++ b/README.md @@ -1 +1,35 @@ # DarkMode + +The easiest way to set dark/light theme or switch between of those + +## Prerequisites: +- Windows operating system +- PowerShell 5.0 or later +- +# License +Creative Commons (CC BY 4.0) + +# Usage: +``` +DarkMode.ps1 [status|dark|light|toggle] +#(without the optional switches, the toggle command will be performed) +``` + +## Examples +``` +# Check status +PS S:\> .\DarkMode.ps1 status +Light theme + +# Toggle (switch between light and dark) +PS S:\> .\DarkMode.ps1 toggle +# Or without arguments: +PS S:\> .\DarkMode.ps1 + +# Set dark theme +PS S:\> .\DarkMode.ps1 dark + + +# Set light theme +PS S:\> .\DarkMode.ps1 light +```