This commit changes the order of the main menu. (#4043)

Since in the next NVIDIA update, the kernel choice will have an impact on profiles.
The order this way makes it more logical: Bootloader => Kernel => Hw drivers
This commit is contained in:
HADEON 2025-12-28 12:20:17 +01:00 committed by GitHub
parent 4e52dc7493
commit ac984b7622
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -92,6 +92,14 @@ class GlobalMenu(AbstractMenu[None]):
preview_action=self._prev_bootloader_config,
key='bootloader_config',
),
MenuItem(
text=tr('Kernels'),
value=['linux'],
action=select_kernel,
preview_action=self._prev_kernel,
mandatory=True,
key='kernels',
),
MenuItem(
text=tr('Hostname'),
value='archlinux',
@ -118,14 +126,6 @@ class GlobalMenu(AbstractMenu[None]):
preview_action=self._prev_applications,
key='app_config',
),
MenuItem(
text=tr('Kernels'),
value=['linux'],
action=select_kernel,
preview_action=self._prev_kernel,
mandatory=True,
key='kernels',
),
MenuItem(
text=tr('Network configuration'),
action=ask_to_configure_network,