peredOS/iso/boot/grub/grub.cfg
2026-07-03 12:17:06 +03:00

35 lines
946 B
INI
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# === ВКЛЮЧАЕМ БЛЯДСКУЮ ГРАФИКУ И ТЕМУ ===
# Загружаем модули, чтобы GRUB вообще понял, что такое картинки и видеокарта
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
insmod gfxterm
insmod jpeg
insmod gfxmenu
# Выставляем нормальное разрешение (чтобы миньонов не разпидарасило)
set gfxmode=1024x768
terminal_output gfxterm
# Путь к твоей блядской теме из субмодуля
set theme=/boot/grub/themes/minions-grub-theme/theme.txt
set menu_color_normal=black/light-gray
set menu_color_highlight=yellow/blue
# =======================================
set lang=ru_RU
# Время ожидания до автозапуска (в секундах)
set timeout=5
menuentry "PeredOS" {
multiboot /boot/kernel.bin
boot
}
menuentry "Reboot" {
reboot
}