parent
f289ce21c7
commit
dfecfa637d
2 changed files with 8 additions and 3 deletions
|
|
@ -37,12 +37,12 @@ BASE_MENUS = {
|
||||||
MenuEntry('ESET NOD32 AV (MSP)', 'auto_install_eset_nod32_av_msp', selected=False),
|
MenuEntry('ESET NOD32 AV (MSP)', 'auto_install_eset_nod32_av_msp', selected=False),
|
||||||
MenuEntry('Firefox', 'auto_install_firefox'),
|
MenuEntry('Firefox', 'auto_install_firefox'),
|
||||||
MenuEntry('LibreOffice', 'auto_install_libreoffice', selected=False),
|
MenuEntry('LibreOffice', 'auto_install_libreoffice', selected=False),
|
||||||
MenuEntry('Open Shell', 'auto_install_open_shell'),
|
MenuEntry('Open-Shell', 'auto_install_open_shell', selected=False),
|
||||||
MenuEntry('Software Bundle', 'auto_install_software_bundle'),
|
MenuEntry('Software Bundle', 'auto_install_software_bundle'),
|
||||||
),
|
),
|
||||||
'Configure System': (
|
'Configure System': (
|
||||||
MenuEntry('Apply ITS Settings', 'auto_apply_its_settings'),
|
MenuEntry('Apply ITS Settings', 'auto_apply_its_settings'),
|
||||||
MenuEntry('Open Shell', 'auto_config_open_shell'),
|
MenuEntry('Open-Shell', 'auto_config_open_shell', 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'),
|
||||||
|
|
@ -91,7 +91,7 @@ PRESETS = {
|
||||||
'Additional User': {
|
'Additional User': {
|
||||||
'Configure System': (
|
'Configure System': (
|
||||||
'Configure Browsers',
|
'Configure Browsers',
|
||||||
'Open Shell',
|
'Open-Shell',
|
||||||
'uBlock Origin',
|
'uBlock Origin',
|
||||||
'Enable BSoD MiniDumps',
|
'Enable BSoD MiniDumps',
|
||||||
'Enable RegBack',
|
'Enable RegBack',
|
||||||
|
|
|
||||||
|
|
@ -246,6 +246,11 @@ def load_preset(menus, presets, title, enable_menu_exit=True):
|
||||||
print_standard(f'{title}')
|
print_standard(f'{title}')
|
||||||
print('')
|
print('')
|
||||||
if selection[0] == 'Default':
|
if selection[0] == 'Default':
|
||||||
|
# OpenShell
|
||||||
|
if ask('Install OpenShell?'):
|
||||||
|
menus['Install Software'].options['Open-Shell']['Selected'] = True
|
||||||
|
menus['Configure System'].options['Open-Shell']['Selected'] = True
|
||||||
|
|
||||||
# LibreOffice
|
# LibreOffice
|
||||||
if ask('Install LibreOffice?'):
|
if ask('Install LibreOffice?'):
|
||||||
menus['Install Software'].options['LibreOffice']['Selected'] = True
|
menus['Install Software'].options['LibreOffice']['Selected'] = True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue