AeThex-OS/configs/grub/grub.cfg
2025-12-27 18:08:27 +00:00

53 lines
1,009 B
INI

# GRUB Customization Configuration
# AeThex Linux Bootloader Theme
# Menu colors (terminal format)
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
# Timeout in seconds
set timeout=5
set timeout_style=menu
# Default boot option
set default=0
# Display settings
set gfxmode=auto
set gfxpayload=keep
terminal_output gfxterm
# Load video modules
insmod all_video
insmod gfxterm
insmod png
insmod jpeg
# Load theme if available
if [ -f /boot/grub/themes/aethex/theme.txt ]; then
set theme=/boot/grub/themes/aethex/theme.txt
fi
# Boot menu entries
menuentry "AeThex Linux" {
set gfxpayload=keep
linux /boot/vmlinuz root=UUID=ROOTFS_UUID ro quiet splash
initrd /boot/initrd.img
}
menuentry "AeThex Linux (Recovery Mode)" {
linux /boot/vmlinuz root=UUID=ROOTFS_UUID ro recovery nomodeset
initrd /boot/initrd.img
}
menuentry "Memory Test (memtest86+)" {
linux16 /boot/memtest86+.bin
}
menuentry "Reboot" {
reboot
}
menuentry "Shutdown" {
halt
}