From e62a008800171c800a36369d170be6241fbb852a Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 2 Oct 2021 18:07:00 -0600 Subject: [PATCH] Disable opening news and interests on hover over --- scripts/wk/setup/win.py | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/scripts/wk/setup/win.py b/scripts/wk/setup/win.py index 9e3aa699..e319bfb3 100644 --- a/scripts/wk/setup/win.py +++ b/scripts/wk/setup/win.py @@ -163,31 +163,35 @@ REG_WINDOWS_EXPLORER = { }, 'HKCU': { # Desktop theme (<= v1809 default) - r'Software\Microsoft\Windows\CurrentVersion\Themes\Personalize': { + r'Software\Microsoft\Windows\CurrentVersion\Themes\Personalize': ( ('AppsUseLightTheme', 1, 'DWORD'), ('SystemUsesLightTheme', 0, 'DWORD'), - }, + ), # Disable features - r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': { + r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': ( ('SilentInstalledAppsEnabled', 0, 'DWORD'), # Tips and Tricks ('SoftLandingEnabled ', 0, 'DWORD'), ('SubscribedContent-338389Enabled', 0, 'DWORD'), - }, + ), + # Disable news and interests from opening on hover + r'Software\Microsoft\Windows\CurrentVersion\Feeds': ( + ('ShellFeedsTaskbarOpenOnHover', 0, 'DWORD'), + ), # File Explorer - r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': { + r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': ( # Change default Explorer view to "Computer" ('LaunchTo', 1, 'DWORD'), ('SeparateProcess', 1, 'DWORD'), - }, + ), # Hide People bar - r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': { + r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': ( ('PeopleBand', 0, 'DWORD'), - }, + ), # Hide Search button / box - r'Software\Microsoft\Windows\CurrentVersion\Search': { + r'Software\Microsoft\Windows\CurrentVersion\Search': ( ('SearchboxTaskbarMode', 1, 'DWORD'), - }, + ), }, } REG_OPEN_SHELL_SETTINGS = {