Disable Windows search highlights

Addresses issue #190
This commit is contained in:
2Shirt 2022-07-10 15:42:53 -07:00
parent 38e867d3e3
commit df85d3049e
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -68,6 +68,10 @@ REG_WINDOWS_EXPLORER = {
r'Software\Microsoft\Windows\CurrentVersion\Feeds': ( r'Software\Microsoft\Windows\CurrentVersion\Feeds': (
('ShellFeedsTaskbarOpenOnHover', 0, 'DWORD'), ('ShellFeedsTaskbarOpenOnHover', 0, 'DWORD'),
), ),
# Disable search highlights
r'Software\Microsoft\Windows\CurrentVersion\Feeds\DSB': (
('ShowDynamicContent', 0, 'DWORD'),
),
# File Explorer # File Explorer
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': ( r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': (
# Change default Explorer view to "Computer" # Change default Explorer view to "Computer"
@ -82,6 +86,10 @@ REG_WINDOWS_EXPLORER = {
r'Software\Microsoft\Windows\CurrentVersion\Search': ( r'Software\Microsoft\Windows\CurrentVersion\Search': (
('SearchboxTaskbarMode', 1, 'DWORD'), ('SearchboxTaskbarMode', 1, 'DWORD'),
), ),
# Disable search highlights from opening on hover
r'Software\Microsoft\Windows\CurrentVersion\SearchSettings': (
('IsDynamicSearchBoxEnabled', 0, 'DWORD'),
),
}, },
} }
REG_OPEN_SHELL_SETTINGS = { REG_OPEN_SHELL_SETTINGS = {