Advertisement
Guest User

Untitled

a guest
May 10th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.37 KB | None | 0 0
  1. GRUB_DEFAULT=saved
  2. GRUB_TIMEOUT=5
  3. GRUB_TIMEOUT_STYLE=hidden
  4. GRUB_DISTRIBUTOR="Manjaro"
  5. GRUB_CMDLINE_LINUX_DEFAULT="nvidia-drm.modeset=1 quiet splash udev.log_priority=3 resume=UUID=391cd0a9-1350-4fad-b78d-67386eaa1fb7"
  6. GRUB_CMDLINE_LINUX="resume=UUID=391cd0a9-1350-4fad-b78d-67386eaa1fb7"
  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. # Uncomment to disable submenus in boot menu
  13. #GRUB_DISABLE_SUBMENU=y
  14.  
  15. # Preload both GPT and MBR modules so that they are not missed
  16. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  17.  
  18. # Uncomment to enable booting from LUKS encrypted devices
  19. #GRUB_ENABLE_CRYPTODISK=y
  20.  
  21. # Uncomment to use basic console
  22. GRUB_TERMINAL_INPUT=console
  23.  
  24. # Uncomment to disable graphical terminal
  25. #GRUB_TERMINAL_OUTPUT=console
  26.  
  27. # The resolution used on graphical terminal
  28. # note that you can use only modes which your graphic card supports via VBE
  29. # you can see them in real GRUB with the command 'videoinfo'
  30. GRUB_GFXMODE=auto
  31.  
  32. # Uncomment to allow the kernel use the same resolution used by grub
  33. GRUB_GFXPAYLOAD_LINUX=keep
  34.  
  35. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  36. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  37. #GRUB_DISABLE_LINUX_UUID=true
  38.  
  39. # Uncomment to disable generation of recovery mode menu entries
  40. GRUB_DISABLE_RECOVERY=true
  41.  
  42. # Uncomment this option to enable os-prober execution in the grub-mkconfig command
  43. GRUB_DISABLE_OS_PROBER=false
  44.  
  45. # Uncomment and set to the desired menu colors.  Used by normal and wallpaper
  46. # modes only.  Entries specified as foreground/background.
  47. GRUB_COLOR_NORMAL="light-gray/black"
  48. GRUB_COLOR_HIGHLIGHT="green/black"
  49.  
  50. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  51. #GRUB_BACKGROUND="/usr/share/grub/background.png"
  52. GRUB_THEME="/usr/share/grub/themes/manjaro/theme.txt"
  53.  
  54. # Uncomment to get a beep at GRUB start
  55. #GRUB_INIT_TUNE="480 440 1"
  56.  
  57. # Uncomment to ensure that the root filesystem is mounted read-only so that
  58. # systemd-fsck can run the check automatically. We use 'fsck' by default, which
  59. # needs 'rw' as boot parameter, to avoid delay in boot-time. 'fsck' needs to be
  60. # removed from 'mkinitcpio.conf' to make 'systemd-fsck' work.
  61. # See also Arch-Wiki: https://wiki.archlinux.org/index.php/Fsck#Boot_time_checking
  62. #GRUB_ROOT_FS_RO=true
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement