From Thats_me, 2 Years ago, written in Plain Text.
Embed
  1. ~$ cat /etc/default/grub
  2. # GRUB boot loader configuration
  3.  
  4. GRUB_DEFAULT=0
  5. GRUB_TIMEOUT=5
  6. GRUB_DISTRIBUTOR="Artix"
  7. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
  8. GRUB_CMDLINE_LINUX=""
  9.  
  10. # Preload both GPT and MBR modules so that they are not missed
  11. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  12.  
  13. # Uncomment to enable booting from LUKS encrypted devices
  14. #GRUB_ENABLE_CRYPTODISK=y
  15.  
  16. # Set to 'countdown' or 'hidden' to change timeout behavior,
  17. # press ESC key to display menu.
  18. GRUB_TIMEOUT_STYLE=menu
  19.  
  20. # Uncomment to use basic console
  21. GRUB_TERMINAL_INPUT=console
  22.  
  23. # Uncomment to disable graphical terminal
  24. #GRUB_TERMINAL_OUTPUT=console
  25.  
  26. # The resolution used on graphical terminal
  27. # note that you can use only modes which your graphic card supports via VBE
  28. # you can see them in real GRUB with the command `vbeinfo'
  29. GRUB_GFXMODE=auto
  30.  
  31. # Uncomment to allow the kernel use the same resolution used by grub
  32. GRUB_GFXPAYLOAD_LINUX=keep
  33.  
  34. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  35. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  36. #GRUB_DISABLE_LINUX_UUID=true
  37.  
  38. # Uncomment to disable generation of recovery mode menu entries
  39. GRUB_DISABLE_RECOVERY=true
  40.  
  41. # Uncomment and set to the desired menu colors.  Used by normal and wallpaper
  42. # modes only.  Entries specified as foreground/background.
  43. #GRUB_COLOR_NORMAL="light-blue/black"
  44. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  45.  
  46. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  47. #GRUB_BACKGROUND="/path/to/wallpaper"
  48. GRUB_THEME="/path/to/gfxtheme"
  49.  
  50. # Uncomment to get a beep at GRUB start
  51. #GRUB_INIT_TUNE="480 440 1"
  52.  
  53. # Uncomment to make GRUB remember the last selection. This requires
  54. # setting 'GRUB_DEFAULT=saved' above.
  55. GRUB_SAVEDEFAULT=true
  56.  
  57. # Uncomment to disable submenus in boot menu
  58. #GRUB_DISABLE_SUBMENU=y
  59.  
captcha