diff --git a/scripts/wk/cfg/setup.py b/scripts/wk/cfg/setup.py index 28ac5154..5e475912 100644 --- a/scripts/wk/cfg/setup.py +++ b/scripts/wk/cfg/setup.py @@ -68,6 +68,10 @@ REG_WINDOWS_EXPLORER = { r'Software\Microsoft\Windows\CurrentVersion\Feeds': ( ('ShellFeedsTaskbarOpenOnHover', 0, 'DWORD'), ), + # Disable search highlights + r'Software\Microsoft\Windows\CurrentVersion\Feeds\DSB': ( + ('ShowDynamicContent', 0, 'DWORD'), + ), # File Explorer r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': ( # Change default Explorer view to "Computer" @@ -82,6 +86,10 @@ REG_WINDOWS_EXPLORER = { r'Software\Microsoft\Windows\CurrentVersion\Search': ( ('SearchboxTaskbarMode', 1, 'DWORD'), ), + # Disable search highlights from opening on hover + r'Software\Microsoft\Windows\CurrentVersion\SearchSettings': ( + ('IsDynamicSearchBoxEnabled', 0, 'DWORD'), + ), }, } REG_OPEN_SHELL_SETTINGS = {