Advertisement
Guest User

Untitled

a guest
May 26th, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. GRUB_DEFAULT=saved
  2. GRUB_TIMEOUT=5
  3. GRUB_TIMEOUT_STYLE=menu
  4. GRUB_DISTRIBUTOR="Manjaro"
  5. GRUB_CMDLINE_LINUX_DEFAULT="quiet apparmor=1 security=apparmor udev.log_priority=3"
  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 this option to enable os-prober execution in the grub-mkconfig command
  40. GRUB_DISABLE_OS_PROBER=false
  41.  
  42. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  43. # modes only. Entries specified as foreground/background.
  44. GRUB_COLOR_NORMAL="light-gray/black"
  45. GRUB_COLOR_HIGHLIGHT="green/black"
  46.  
  47. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  48. #GRUB_BACKGROUND="/usr/share/grub/background.png"
  49. GRUB_THEME="/usr/share/grub/themes/manjaro/theme.txt"
  50.  
  51. # Uncomment to get a beep at GRUB start
  52. #GRUB_INIT_TUNE="480 440 1"
  53.  
  54. # Uncomment to ensure that the root filesystem is mounted read-only so that
  55. # systemd-fsck can run the check automatically. We use 'fsck' by default, which
  56. # needs 'rw' as boot parameter, to avoid delay in boot-time. 'fsck' needs to be
  57. # removed from 'mkinitcpio.conf' to make 'systemd-fsck' work.
  58. # See also Arch-Wiki: https://wiki.archlinux.org/index.php/Fsck#Boot_time_checking
  59. #GRUB_ROOT_FS_RO=true
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement