From d736bc4305614dfa0574c200742bdcd86b0fdb94 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Fri, 17 Apr 2026 08:58:38 -0500 Subject: [PATCH] chore: Update generated dev docs (#4380) --- .../Customize-Preferences/DetailedBSoD.md | 2 +- .../DisableCrossDeviceResume.md | 2 +- .../Customize-Preferences/HiddenFiles.md | 2 +- .../Customize-Preferences/HideSettingsHome.md | 2 +- .../tweaks/Customize-Preferences/LoginBlur.md | 29 +++++++++++++++++++ .../MouseAcceleration.md | 2 +- .../MultiplaneOverlay.md | 2 +- .../Customize-Preferences/NewOutlook.md | 2 +- .../tweaks/Customize-Preferences/S3Sleep.md | 2 +- .../tweaks/Customize-Preferences/ShowExt.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 +- .../DisableExplorerAutoDiscovery.md | 2 +- .../z--Advanced-Tweaks---CAUTION/changedns.md | 2 +- 17 files changed, 45 insertions(+), 16 deletions(-) create mode 100644 docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md diff --git a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md index d037ef30..4f84ea8b 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md @@ -3,7 +3,7 @@ title: "Detailed BSoD" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2482} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2500} "WPFToggleDetailedBSoD": { "Content": "Detailed BSoD", "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md index bcd7b2c8..b2b5d2a6 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md @@ -3,7 +3,7 @@ title: "Cross-Device Resume" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2612} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2630} "WPFToggleDisableCrossDeviceResume": { "Content": "Cross-Device Resume", "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md index f50bf32d..db74f4ed 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md @@ -3,7 +3,7 @@ title: "Show Hidden Files" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2362} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2380} "WPFToggleHiddenFiles": { "Content": "Show Hidden Files", "Description": "If enabled, Hidden Files will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md index 82cdb8a2..981d8292 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md @@ -3,7 +3,7 @@ title: "Remove Settings Home Page" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2232} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2250} "WPFToggleHideSettingsHome": { "Content": "Remove Settings Home Page", "Description": "Removes the Home Page in the Windows Settings app.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md new file mode 100644 index 00000000..98ef5d4d --- /dev/null +++ b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md @@ -0,0 +1,29 @@ +--- +title: "Acrylic Blur on Login Screen" +description: "" +--- + +```json {filename="config/tweaks.json",linenos=inline,linenostart=2188} + "WPFToggleLoginBlur": { + "Content": "Acrylic Blur on Login Screen", + "Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System", + "Name": "DisableAcrylicBackgroundOnLogon", + "Value": "0", + "Type": "DWord", + "OriginalValue": "1", + "DefaultState": "true" + } + ], +``` + +## 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://www.wikiwand.com/en/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/MouseAcceleration.md b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md index 0d2609eb..f2ec6f87 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md @@ -3,7 +3,7 @@ title: "Mouse Acceleration" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2250} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2268} "WPFToggleMouseAcceleration": { "Content": "Mouse Acceleration", "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md index 5b0f614d..8c0285f5 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md @@ -3,7 +3,7 @@ title: "Disable Multiplane Overlay" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2344} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2362} "WPFToggleMultiplaneOverlay": { "Content": "Disable Multiplane Overlay", "Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md index 24292514..b3ce4d5a 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md @@ -3,7 +3,7 @@ title: "New Outlook" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2302} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2320} "WPFToggleNewOutlook": { "Content": "New Outlook", "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md index 51222d1e..acb4327c 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md +++ b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md @@ -3,7 +3,7 @@ title: "S3 Sleep" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2508} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2526} "WPFToggleS3Sleep": { "Content": "S3 Sleep", "Description": "Toggles between Modern Standby and S3 Sleep.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md index d1604ac9..38e63574 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md +++ b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md @@ -3,7 +3,7 @@ title: "Show File Extensions" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2390} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2408} "WPFToggleShowExt": { "Content": "Show File Extensions", "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md index d4da528b..0ec0b832 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md @@ -3,7 +3,7 @@ title: "Recommendations in Start Menu" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2188} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2206} "WPFToggleStartMenuRecommendations": { "Content": "Recommendations in Start Menu", "Description": "If disabled, then you will not see recommendations 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 18691d57..9621f87a 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=2284} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2302} "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "If enabled, Sticky Keys is activated. Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md index dfc6065c..648af551 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md @@ -3,7 +3,7 @@ title: "Task View Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2436} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2454} "WPFToggleTaskView": { "Content": "Task View Button in Taskbar", "Description": "If enabled, Task View Button in Taskbar will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md index 3a774463..ee8ae402 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md @@ -3,7 +3,7 @@ title: "Center Taskbar Items" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2454} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2472} "WPFToggleTaskbarAlignment": { "Content": "Center Taskbar Items", "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md index 5bcbb9ba..912d8d5b 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md @@ -3,7 +3,7 @@ title: "Search Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2418} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2436} "WPFToggleTaskbarSearch": { "Content": "Search Button in Taskbar", "Description": "If enabled, Search Button will be on the Taskbar.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md index e7c9b697..7d934112 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md @@ -3,7 +3,7 @@ title: "Disable Explorer Automatic Folder Discovery" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2557} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2575} "WPFTweaksDisableExplorerAutoDiscovery": { "Content": "Disable Explorer Automatic Folder Discovery", "Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.", 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 a67393c2..54ba01c0 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" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2533} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2551} "WPFchangedns": { "Content": "DNS", "category": "z__Advanced Tweaks - CAUTION",