spacepaste

  1.  
  2. # GRUB boot loader configuration
  3. GRUB_DEFAULT=0
  4. GRUB_TIMEOUT=5
  5. GRUB_DISTRIBUTOR="Arch"
  6. GRUB_CMDLINE_LINUX_DEFAULT="quiet"
  7. GRUB_CMDLINE_LINUX=""
  8. # Preload both GPT and MBR modules so that they are not missed
  9. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  10. # Uncomment to enable booting from LUKS encrypted devices
  11. #GRUB_ENABLE_CRYPTODISK=y
  12. # Manually generated options for decryption
  13. cryptdevice=/dev/nvme0n1p9:cryptroot
  14. root=/dev/mapper/cryptroot
  15. # Uncomment to enable Hidden Menu, and optionally hide the timeout count
  16. #GRUB_HIDDEN_TIMEOUT=5
  17. #GRUB_HIDDEN_TIMEOUT_QUIET=true
  18. # Uncomment to use basic console
  19. GRUB_TERMINAL_INPUT=console
  20. # Uncomment to disable graphical terminal
  21. #GRUB_TERMINAL_OUTPUT=console
  22. # The resolution used on graphical terminal
  23. # note that you can use only modes which your graphic card supports via VBE
  24. # you can see them in real GRUB with the command `vbeinfo'
  25. GRUB_GFXMODE=auto
  26. # Uncomment to allow the kernel use the same resolution used by grub
  27. GRUB_GFXPAYLOAD_LINUX=keep
  28. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  29. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  30. #GRUB_DISABLE_LINUX_UUID=true
  31. # Uncomment to disable generation of recovery mode menu entries
  32. GRUB_DISABLE_RECOVERY=true
  33. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  34. # modes only. Entries specified as foreground/background.
  35. #GRUB_COLOR_NORMAL="light-blue/black"
  36. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  37. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  38. #GRUB_BACKGROUND="/path/to/wallpaper"
  39. #GRUB_THEME="/path/to/gfxtheme"
  40. # Uncomment to get a beep at GRUB start
  41. #GRUB_INIT_TUNE="480 440 1"
  42. # Uncomment to make GRUB remember the last selection. This requires to
  43. # set 'GRUB_DEFAULT=saved' above.
  44. #GRUB_SAVEDEFAULT="true"
  45.