Advertisement
barjac

gfx

Oct 21st, 2010
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. set default=5
  2. set timeout=10
  3. insmod ext2
  4. search --no-floppy --label --set maingrub
  5. #set menu_color_normal=cyan/blue
  6. #set menu_color_highlight=yellow/blue
  7.  
  8. if loadfont /unicode.pf2 ; then
  9. set gfxmode=640x480
  10. insmod gfxterm
  11. insmod vbe
  12. GRUB_THEME=/themes/winter/theme.txt
  13. if terminal_output gfxterm ; then true ; else
  14. # For backward compatibility with versions of terminal.mod that don't
  15. # understand terminal_output
  16. terminal gfxterm
  17. fi
  18. else
  19. set menu_color_normal=cyan/blue
  20. set menu_color_highlight=yellow/blue
  21. fi
  22.  
  23.  
  24. menuentry 'Mandriva 2009.0' {
  25. search --no-floppy --label --set 2009_0_root
  26. linux /boot/vmlinuz
  27. initrd /boot/initrd.img
  28. }
  29.  
  30. ---------------snip---------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement