12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # rEFInd Next theme
- # Hide user interface elements for personal preference or to increase
- # security:
- # banner - the rEFInd title banner (built-in or loaded via "banner")
- # label - boot option text label in the menu
- # singleuser - remove the submenu options to boot Mac OS X in single-user
- # or verbose modes; affects ONLY MacOS X
- # safemode - remove the submenu option to boot Mac OS X in "safe mode"
- # hwtest - the submenu option to run Apple's hardware test
- # arrows - scroll arrows on the OS selection tag line
- # hints - brief command summary in the menu
- # editor - the options editor (+, F2, or Insert on boot options menu)
- # all - all of the above
- # Default is none of these (all elements active)
- #
- hideui singleuser,hints,label
- # Set the name of a subdirectory in which icons are stored. Icons must
- # have the same names they have in the standard directory. The directory
- # name is specified relative to the main rEFInd binary's directory. If
- # an icon can't be found in the specified directory, an attempt is made
- # to load it from the default directory; thus, you can replace just some
- # icons in your own directory and rely on the default for others.
- # Default is "icons".
- #
- icons_dir next-theme/icons
- # Use a custom title banner instead of the rEFInd icon and name. The file
- # path is relative to the directory where refind.efi is located. The color
- # in the top left corner of the image is used as the background color
- # for the menu screens. Currently uncompressed BMP images with color
- # depths of 24, 8, 4 or 1 bits are supported, as well as PNG images.
- #
- banner next-theme/background.png
- # Custom images for the selection background. There is a big one (144 x 144)
- # for the OS icons, and a small one (64 x 64) for the function icons in the
- # second row. If only a small image is given, that one is also used for
- # the big icons by stretching it in the middle. If only a big one is given,
- # the built-in default will be used for the small icons.
- #
- # Like the banner option above, these options take a filename of an
- # uncompressed BMP image file with a color depth of 24, 8, 4, or 1 bits,
- # or a PNG image. The PNG format is required if you need transparency
- # support (to let you "see through" to a full-screen banner).
- #
- selection_big next-theme/selection_big.png
- selection_small next-theme/selection_small.png
- # Which non-bootloader tools to show on the tools line, and in what
- # order to display them:
- # shell - the EFI shell (requires external program; see rEFInd
- # documentation for details)
- # gptsync - the (dangerous) gptsync.efi utility (requires external
- # program; see rEFInd documentation for details)
- # apple_recovery - boots the Apple Recovery HD partition, if present
- # mok_tool - makes available the Machine Owner Key (MOK) maintenance
- # tool, MokManager.efi, used on Secure Boot systems
- # about - an "about this program" option
- # exit - a tag to exit from rEFInd
- # shutdown - shuts down the computer (a bug causes this to reboot
- # EFI systems)
- # reboot - a tag to reboot the computer
- # firmware - a tag to reboot the computer into the firmware's
- # user interface (ignored on older computers)
- # Default is shell,apple_recovery,mok_tool,about,shutdown,reboot,firmware
- #
- showtools about,reboot,shutdown
|