Advertisement
BxOxSxS

GRUB CONFIG

Aug 8th, 2020
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. GRUB_DEFAULT="saved"
  2. GRUB_TIMEOUT="3"
  3. GRUB_TIMEOUT_STYLE="menu"
  4. GRUB_DISTRIBUTOR="Manjaro"
  5. GRUB_CMDLINE_LINUX_DEFAULT="splash reboot=pci"
  6. GRUB_CMDLINE_LINUX=""
  7.  
  8. # If you want to enable the save default function, uncomment the following
  9. # line, and set GRUB_DEFAULT to saved.
  10. GRUB_SAVEDEFAULT="true"
  11.  
  12. # Preload both GPT and MBR modules so that they are not missed
  13. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  14.  
  15. # Uncomment to enable booting from LUKS encrypted devices
  16. GRUB_ENABLE_CRYPTODISK="y"
  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 'videoinfo'
  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="orange/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.  
  47. # Uncomment to get a beep at GRUB start
  48. #GRUB_INIT_TUNE="480 440 1"
  49. GRUB_THEME="/usr/share/grub/themes/Vimix/theme.txt"
  50.  
  51. #GRUB_DISABLE_LINUX_RECOVERY="true"
  52. #GRUB_DISABLE_RECOVERY="true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement