Advertisement
Guest User

refind-theme

a guest
Jun 15th, 2019
690
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. # Minimal refind theme
  2.  
  3. # Hide user interface elements for personal preference or to increase
  4. # security:
  5. # banner - the rEFInd title banner (built-in or loaded via "banner")
  6. # label - boot option text label in the menu
  7. # singleuser - remove the submenu options to boot Mac OS X in single-user
  8. # or verbose modes; affects ONLY MacOS X
  9. # safemode - remove the submenu option to boot Mac OS X in "safe mode"
  10. # hwtest - the submenu option to run Apple's hardware test
  11. # arrows - scroll arrows on the OS selection tag line
  12. # hints - brief command summary in the menu
  13. # editor - the options editor (+, F2, or Insert on boot options menu)
  14. # all - all of the above
  15. # Default is none of these (all elements active)
  16. #
  17. hideui singleuser,hints,arrows,label,badges
  18.  
  19. # Set the name of a subdirectory in which icons are stored. Icons must
  20. # have the same names they have in the standard directory. The directory
  21. # name is specified relative to the main rEFInd binary's directory. If
  22. # an icon can't be found in the specified directory, an attempt is made
  23. # to load it from the default directory; thus, you can replace just some
  24. # icons in your own directory and rely on the default for others.
  25. # Default is "icons".
  26. #
  27. icons_dir themes/rEFInd-minimal/icons
  28.  
  29. # Use a custom title banner instead of the rEFInd icon and name. The file
  30. # path is relative to the directory where refind.efi is located. The color
  31. # in the top left corner of the image is used as the background color
  32. # for the menu screens. Currently uncompressed BMP images with color
  33. # depths of 24, 8, 4 or 1 bits are supported, as well as PNG images.
  34. #
  35. banner themes/rEFInd-minimal/background.png
  36.  
  37. # Tells rEFInd whether to display banner images pixel-for-pixel (noscale)
  38. # or to scale banner images to fill the screen (fillscreen). The former is
  39. # the default.
  40. #
  41. banner_scale fillscreen
  42.  
  43. # Custom images for the selection background. There is a big one (144 x 144)
  44. # for the OS icons, and a small one (64 x 64) for the function icons in the
  45. # second row. If only a small image is given, that one is also used for
  46. # the big icons by stretching it in the middle. If only a big one is given,
  47. # the built-in default will be used for the small icons.
  48. #
  49. # Like the banner option above, these options take a filename of an
  50. # uncompressed BMP image file with a color depth of 24, 8, 4, or 1 bits,
  51. # or a PNG image. The PNG format is required if you need transparency
  52. # support (to let you "see through" to a full-screen banner).
  53. #
  54. selection_big themes/rEFInd-minimal/selection_big.png
  55. selection_small themes/rEFInd-minimal/selection_small.png
  56.  
  57. # Which non-bootloader tools to show on the tools line, and in what
  58. # order to display them:
  59. # shell - the EFI shell (requires external program; see rEFInd
  60. # documentation for details)
  61. # gptsync - the (dangerous) gptsync.efi utility (requires external
  62. # program; see rEFInd documentation for details)
  63. # apple_recovery - boots the Apple Recovery HD partition, if present
  64. # mok_tool - makes available the Machine Owner Key (MOK) maintenance
  65. # tool, MokManager.efi, used on Secure Boot systems
  66. # about - an "about this program" option
  67. # exit - a tag to exit from rEFInd
  68. # shutdown - shuts down the computer (a bug causes this to reboot
  69. # EFI systems)
  70. # reboot - a tag to reboot the computer
  71. # firmware - a tag to reboot the computer into the firmware's
  72. # user interface (ignored on older computers)
  73. # Default is shell,apple_recovery,mok_tool,about,shutdown,reboot,firmware
  74. #
  75. showtools shutdown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement