Advertisement
Guest User

Untitled

a guest
Mar 5th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. GRUB_DEFAULT=saved
  2. GRUB_TIMEOUT=5
  3. GRUB_DISTRIBUTOR="Manjaro"
  4. GRUB_CMDLINE_LINUX_DEFAULT=""
  5. GRUB_CMDLINE_LINUX=""
  6.  
  7. # If you want to enable the save default function, uncomment the following
  8. # line, and set GRUB_DEFAULT to saved.
  9. GRUB_SAVEDEFAULT=true
  10.  
  11. # Preload both GPT and MBR modules so that they are not missed
  12. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  13.  
  14. # Uncomment to enable Hidden Menu, and optionally hide the timeout count
  15. #GRUB_HIDDEN_TIMEOUT=5
  16. #GRUB_HIDDEN_TIMEOUT_QUIET=true
  17.  
  18. # Uncomment to use basic console
  19. GRUB_TERMINAL_INPUT=console
  20.  
  21. # Uncomment to disable graphical terminal
  22. #GRUB_TERMINAL_OUTPUT=console
  23.  
  24. # The resolution used on graphical terminal
  25. # note that you can use only modes which your graphic card supports via VBE
  26. # you can see them in real GRUB with the command `vbeinfo'
  27. GRUB_GFXMODE=auto
  28.  
  29. # Uncomment to allow the kernel use the same resolution used by grub
  30. GRUB_GFXPAYLOAD_LINUX=keep
  31.  
  32. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  33. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  34. #GRUB_DISABLE_LINUX_UUID=true
  35.  
  36. # Uncomment to disable generation of recovery mode menu entries
  37. GRUB_DISABLE_RECOVERY=true
  38.  
  39. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  40. # modes only. Entries specified as foreground/background.
  41. GRUB_COLOR_NORMAL="light-gray/black"
  42. GRUB_COLOR_HIGHLIGHT="green/black"
  43.  
  44. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  45. #GRUB_BACKGROUND="/usr/share/grub/background.png"
  46. #GRUB_THEME="/path/to/gfxtheme"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement