From ae4c78754506ae24706e29acd5e657945da9c832 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Mon, 22 Jun 2026 14:35:13 -0500 Subject: [PATCH] chore: Update generated dev docs (#4738) --- .../DisableLockscreen.md | 28 +++++++++++++++++++ .../tweaks/Customize-Preferences/GameMode.md | 2 +- .../tweaks/Customize-Preferences/LongPaths.md | 2 +- .../StartMenuRecommendations.md | 2 +- .../Customize-Preferences/StickyKeys.md | 2 +- .../tweaks/Customize-Preferences/TaskView.md | 2 +- .../Customize-Preferences/TaskbarAlignment.md | 2 +- .../Customize-Preferences/TaskbarSearch.md | 2 +- .../z--Advanced-Tweaks---CAUTION/changedns.md | 2 +- 9 files changed, 36 insertions(+), 8 deletions(-) create mode 100644 docs/content/dev/tweaks/Customize-Preferences/DisableLockscreen.md diff --git a/docs/content/dev/tweaks/Customize-Preferences/DisableLockscreen.md b/docs/content/dev/tweaks/Customize-Preferences/DisableLockscreen.md new file mode 100644 index 00000000..cb56a22a --- /dev/null +++ b/docs/content/dev/tweaks/Customize-Preferences/DisableLockscreen.md @@ -0,0 +1,28 @@ +--- +title: "Lock Screen - Disable" +description: "" +--- + +```json {filename="config/tweaks.json",linenos=inline,linenostart=1689} + "WPFTweaksDisableLockscreen": { + "Content": "Lock Screen - Disable", + "Description": "Skips the lock screen entirely and goes directly to the sign-in screen on boot and wake.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Personalization", + "Name": "NoLockScreen", + "Value": "1", + "Type": "DWord", + "OriginalValue": "" + } + ], +``` + +## Registry Changes + +Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place. + +You can find information about the registry on [Wikipedia](https://en.wikipedia.org/wiki/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry). diff --git a/docs/content/dev/tweaks/Customize-Preferences/GameMode.md b/docs/content/dev/tweaks/Customize-Preferences/GameMode.md index a90fbb64..6bee8451 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/GameMode.md +++ b/docs/content/dev/tweaks/Customize-Preferences/GameMode.md @@ -3,7 +3,7 @@ title: "Game Mode" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1815} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1832} "WPFToggleGameMode": { "Content": "Game Mode", "Description": "Toggles Windows prioritizes gaming performance by allocating system resources to games.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/LongPaths.md b/docs/content/dev/tweaks/Customize-Preferences/LongPaths.md index 98e6aff9..ad34b261 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/LongPaths.md +++ b/docs/content/dev/tweaks/Customize-Preferences/LongPaths.md @@ -3,7 +3,7 @@ title: "Enable Long Paths" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1841} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1858} "WPFToggleLongPaths": { "Content": "Enable Long Paths", "Description": "Toggles support for file paths longer than 260 characters in Explorer.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md index 658856c9..aed322c9 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md @@ -3,7 +3,7 @@ title: "Start Menu Recommendations" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1689} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1706} "WPFToggleStartMenuRecommendations": { "Content": "Start Menu Recommendations", "Description": "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md index 5e0465b9..56006e02 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md @@ -3,7 +3,7 @@ title: "Sticky Keys" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1733} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1750} "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "Toggles the Sticky Keys, which activate when clicking shift rapidly.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md index cbdbe214..9ef5e147 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md @@ -3,7 +3,7 @@ title: "Taskbar Task View Icon" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1797} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1814} "WPFToggleTaskView": { "Content": "Taskbar Task View Icon", "Description": "Toggles the Task View Button in the Taskbar.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md index 7d92e1f3..04078264 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md @@ -3,7 +3,7 @@ title: "Taskbar Centered Icons" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1751} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1768} "WPFToggleTaskbarAlignment": { "Content": "Taskbar Centered Icons", "Description": "Toggles the Taskbar alignment either to the left or center.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md index ca3a1016..128390cc 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md @@ -3,7 +3,7 @@ title: "Taskbar Search Icon" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1779} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1796} "WPFToggleTaskbarSearch": { "Content": "Taskbar Search Icon", "Description": "Toggles the Search Button on the Taskbar.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md index c29ae854..cb8f7a7f 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md @@ -3,7 +3,7 @@ title: "DNS - Set to:" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1866} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1883} "WPFchangedns": { "Content": "DNS - Set to:", "category": "z__Advanced Tweaks - CAUTION",