[postcfg] enable menu_auto_hide option

This commit is contained in:
Philip Müller 2018-09-25 20:15:40 +02:00
parent 0c29aa2df8
commit 84659674cd

View File

@ -101,6 +101,10 @@ class ConfigController:
and libcalamares.globalstorage.value("bootLoader") is not None:
target_env_call(["update-grub"])
# Enable 'menu_auto_hide' when supported in grubenv
if exists(join(self.root, "usr/bin/grub-set-bootflag"))
target_env_call(["grub-editenv - set menu_auto_hide=1"])
return None