Last active
November 1, 2021 18:56
-
-
Save volcbs/c3a5c2cb5a4c93842de9ac01ae5f09d9 to your computer and use it in GitHub Desktop.
Configuration file for the RefindPlus boot menu. By default, it will automatically pick into the previous chosen bootloader.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# config.conf | |
# Configuration file for the RefindPlus boot menu | |
# | |
timeout 3 #wait for x seconds before RefindPlus picks the default one | |
scanfor manual,external #methods that used to locate bootloaders | |
disable_tag_help #disables feature that ensures hidden tags can always be unhidden | |
use_graphics_for opencore,windows #basically skip verbose logs | |
log_level 0 #no logs | |
menuentry "MacOS" { | |
ostype opencore | |
graphics on | |
icon /EFI/refind/themes/*/icons/os_mac.png #change the directory if you want to use icon, otherwise just delete it to set it as default | |
loader /EFI/OC/OpenCore.efi | |
} | |
menuentry "Windows" { | |
ostype windows | |
graphics on | |
icon /EFI/refind/themes/*/icons/os_win10.png #change the directory if you want to use icon, otherwise just delete it to set it as default | |
loader /EFI/Microsoft/Boot/bootmgfw.efi | |
} | |
include themes/*/theme.conf #change the directory if you want to use theme (put the theme folder in /EFI/refind/themes), otherwise just delete it to set it as default | |
#for more information: https://www.rodsbooks.com/refind/configfile.html and https://github.com/dakanji/RefindPlus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment