Don't disable Chrome notifications by default.
Doing so can cause Chrome sync to break and need re-authentication.
This commit is contained in:
parent
38fed7756f
commit
6dde471bf5
2 changed files with 7 additions and 1 deletions
|
|
@ -46,6 +46,7 @@ BASE_MENUS = {
|
||||||
'Configure System': (
|
'Configure System': (
|
||||||
MenuEntry('Apply ITS Settings', 'auto_apply_its_settings', selected=False),
|
MenuEntry('Apply ITS Settings', 'auto_apply_its_settings', selected=False),
|
||||||
MenuEntry('Open-Shell', 'auto_config_open_shell', selected=False),
|
MenuEntry('Open-Shell', 'auto_config_open_shell', selected=False),
|
||||||
|
MenuEntry('Disable Chrome Notifications', 'auto_disable_chrome_notifications', selected=False),
|
||||||
MenuEntry('Disable Fast Startup', 'auto_disable_fast_startup', selected=False),
|
MenuEntry('Disable Fast Startup', 'auto_disable_fast_startup', selected=False),
|
||||||
MenuEntry('Disable Telemetry', 'auto_shutup_10'),
|
MenuEntry('Disable Telemetry', 'auto_shutup_10'),
|
||||||
MenuEntry('Enable BSoD MiniDumps', 'auto_enable_bsod_minidumps'),
|
MenuEntry('Enable BSoD MiniDumps', 'auto_enable_bsod_minidumps'),
|
||||||
|
|
|
||||||
|
|
@ -484,7 +484,6 @@ def auto_activate_windows() -> None:
|
||||||
def auto_config_browsers() -> None:
|
def auto_config_browsers() -> None:
|
||||||
"""Configure Browsers."""
|
"""Configure Browsers."""
|
||||||
prompt = ' Press Enter to continue...'
|
prompt = ' Press Enter to continue...'
|
||||||
TRY_PRINT.run('Chrome Notifications...', disable_chrome_notifications)
|
|
||||||
TRY_PRINT.run(
|
TRY_PRINT.run(
|
||||||
'uBlock Origin...', enable_ublock_origin, msg_good='STARTED',
|
'uBlock Origin...', enable_ublock_origin, msg_good='STARTED',
|
||||||
)
|
)
|
||||||
|
|
@ -508,6 +507,12 @@ def auto_config_open_shell() -> None:
|
||||||
TRY_PRINT.run('Open Shell...', config_open_shell)
|
TRY_PRINT.run('Open Shell...', config_open_shell)
|
||||||
|
|
||||||
|
|
||||||
|
def auto_disable_chrome_notifications():
|
||||||
|
"""Disable Chrome notifications.
|
||||||
|
|
||||||
|
NOTE: This can cause Chrome Sync to be re-authenticated."""
|
||||||
|
TRY_PRINT.run('Disable Chrome Notifications...', disable_chrome_notifications)
|
||||||
|
|
||||||
def auto_disable_fast_startup():
|
def auto_disable_fast_startup():
|
||||||
"""Disable fast startup (i.e. Hiberboot)."""
|
"""Disable fast startup (i.e. Hiberboot)."""
|
||||||
TRY_PRINT.run(
|
TRY_PRINT.run(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue