insmod part_gpt # or part_iso9660 if using an ISO insmod iso9660 # if booting from ISO insmod ext2 # if filesystem is ext2/ext4 in the ISO insmod gfxterm # or efi_gop/efi_uga depending on your firmware insmod jpeg insmod png function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus fi } font=($root)/boot/grub/fonts/unicode.pf2 if loadfont $font ; then set gfxmode=1920x1080,auto load_video insmod gfxterm set locale_dir=$prefix/locale set lang=en_US insmod gettext fi terminal_output gfxterm loadfont ($root)/boot/grub/themes/Elegant-mojave-float-left-light/terminus-12.pf2 loadfont ($root)/boot/grub/themes/Elegant-mojave-float-left-light/terminus-14.pf2 loadfont ($root)/boot/grub/themes/Elegant-mojave-float-left-light/terminus-16.pf2 loadfont ($root)/boot/grub/themes/Elegant-mojave-float-left-light/terminus-18.pf2 loadfont ($root)/boot/grub/themes/Elegant-mojave-float-left-light/unifont-16.pf2 set theme=($root)/boot/grub/themes/Elegant-mojave-float-left-light/theme.txt export theme set timeout=5 set default=0 menuentry "FemboyOS 2 testing Live" { linux /boot/vmlinuz-6.18.3 \ root=live:CDLABEL=ISOIMAGE \ rd.live.image \ rd.live.overlay=:tmpfs \ rd.live.overlay.overlayfs=1 \ rd.live.overlay.readonly=1 \ rd.live.ram=0 \ rw quiet splash loglevel=0 \ rc.plymouth=1 vt.handoff=7 \ earlycon=off \ rd.udev.log_level=0 rd.systemd.show_status=0 initrd /boot/initramfs-6.18.3.img }