Table of Contents

Cloud Monk Writing Style

Return to Cloud Monk Book List, Cloud Monk Source Quotes, Cloud Monk Writing Style, Cloud Monk Book 1 - CNCF Sec 20 Langs, Cloud Monk Book 2 - FP 10 Langs, Cloud Monk Book 3 - Concurrency 10 Langs

On Writing

Writing Bibliography:

https://leanpub.com/author_dashboard/books/unpublished

2022 DONE! Cloud Monk's Books:

Cloud Monk's Books: DevOps for 20 Languages by Cloud Monk (December 2022) and Functional Programming Compare and Contrast 10 Languages by Cloud Monk (December 2023)); Cloud Monk Courses, Cloud Monk Library (Cloud Monk's Book Purchases), Cloud Monk, Bibliography, Books, Wisdom and Practice

Author of DevOps for 20 Languages by Cloud Monk (December 2022) based on research from his 3500+ volume Cloud Monk Library (Cloud Monk's Book Purchases).


How to Change Your App Mode in Windows 10

Windows 10 App Mode - “How to Change Default App Mode and Windows Mode to Light or Dark Theme Color in Windows 10

In Windows 10, you can change your apps instantly from light mode to dark mode – great for low-light conditions like working at night. When you make the switch, UWP (Universal Windows Platform) apps including Mail, Calendar and the Windows Store app go to a black background, which can even save your battery power with certain screen technologies.

Starting with Windows 10 build 17666, dark theme support has been added to File Explorer, the File Explorer context menu, as well as the Common File Dialog (aka the Open and Save dialogs).

Some UWP apps (ex: Microsoft Edge) allow you to change their theme independently of your set default app mode.

Starting with Windows 10 build 18282, you can now choose to apply a light or dark theme for your default Windows mode (system UI) and default app mode (apps) separately or both. The system UI includes the taskbar, Start menu, Action Center, touch keyboard, and more. As part of this work Microsoft is also adding a new default wallpaper. Selecting the new Windows Light theme will also change your PC to be light themed.”

Choose Light or Dark Theme Color for Default App Mode using a REG file

The downloadable .reg files below will modify the DWORD value in the registry key below.

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize

AppsUseLightTheme DWORD

0 = Dark theme 1 = Light theme


Choose Light or Dark Theme Color for Default App Mode in PowerShell:

Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 -Type Dword -Force

Choose Light or Dark Theme Color for Default Windows Mode in PowerShell:

Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value 0 -Type Dword -Force

Fair Use Source: https://www.tenforums.com/tutorials/24038-change-default-app-windows-mode-light-dark-theme-windows-10-a.html