Advertisement
Guest User

Untitled

a guest
Mar 20th, 2025
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | Software | 0 0
  1. # GRUB boot loader configuration
  2.  
  3. GRUB_DEFAULT=0
  4. GRUB_TIMEOUT=5
  5. GRUB_DISTRIBUTOR='Garuda'
  6. GRUB_CMDLINE_LINUX_DEFAULT='quiet loglevel=3'
  7. GRUB_CMDLINE_LINUX=""
  8.  
  9. # Preload both GPT and MBR modules so that they are not missed
  10. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  11.  
  12. # Uncomment to enable booting from LUKS encrypted devices
  13. #GRUB_ENABLE_CRYPTODISK=y
  14.  
  15. # Set to 'countdown' or 'hidden' to change timeout behavior,
  16. # press ESC key to display menu.
  17. GRUB_TIMEOUT_STYLE=menu
  18.  
  19. # Uncomment to use basic console
  20. GRUB_TERMINAL_INPUT=console
  21.  
  22. # Uncomment to disable graphical terminal
  23. #GRUB_TERMINAL_OUTPUT=console
  24.  
  25. # The resolution used on graphical terminal
  26. # note that you can use only modes which your graphic card supports via VBE
  27. # you can see them in real GRUB with the command `videoinfo'
  28. GRUB_GFXMODE=auto
  29.  
  30. # Uncomment to allow the kernel use the same resolution used by grub
  31. GRUB_GFXPAYLOAD_LINUX=keep
  32.  
  33. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  34. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  35. #GRUB_DISABLE_LINUX_UUID=true
  36.  
  37. # Uncomment to disable generation of recovery mode menu entries
  38. #GRUB_DISABLE_RECOVERY=true
  39.  
  40. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  41. # modes only. Entries specified as foreground/background.
  42. #GRUB_COLOR_NORMAL="light-blue/black"
  43. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  44.  
  45. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  46. #GRUB_BACKGROUND="/path/to/wallpaper"
  47. GRUB_THEME="/usr/share/grub/themes/garuda-dr460nized/theme.txt"
  48.  
  49. # Uncomment to get a beep at GRUB start
  50. #GRUB_INIT_TUNE="480 440 1"
  51.  
  52. # Uncomment to make GRUB remember the last selection. This requires
  53. # setting 'GRUB_DEFAULT=saved' above.
  54. #GRUB_SAVEDEFAULT=true
  55.  
  56. # Uncomment to disable submenus in boot menu
  57. #GRUB_DISABLE_SUBMENU=y
  58.  
  59. # Probing for other operating systems is disabled for security reasons. Read
  60. # documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
  61. # functionality install os-prober and uncomment to detect and include other
  62. # operating systems.
  63. GRUB_DISABLE_OS_PROBER=false
  64.  
  65. # This config file imports drop-in files from /etc/default/grub.d/.
  66. for garuda_grub_d in ${sysconfdir}/default/grub.d/*.cfg ; do if [ -e "${garuda_grub_d}" ]; then source "${garuda_grub_d}"; fi; done
  67. GRUB_EARLY_INITRD_LINUX_STOCK=''
  68.  
Tags: GRUB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement