Difference between revisions of "User:Hd scania/My rEFInd examples"
From GhostBSD Wiki
(Created page with "==My screenshots== ## https://postimg.cc/gallery/D0yRyrn ## https://postimg.cc/gallery/mCRwXPJ ==My <code>refind.conf</code>== <nowiki>timeout 0 hideui singleuser banner dek...") |
m (→My refind.conf) |
||
Line 3: | Line 3: | ||
## https://postimg.cc/gallery/mCRwXPJ | ## https://postimg.cc/gallery/mCRwXPJ | ||
==My <code>refind.conf</code>== | ==My <code>refind.conf</code>== | ||
− | < | + | <syntaxhighlight lang="bash">timeout 0 |
− | + | ||
hideui singleuser | hideui singleuser | ||
− | |||
banner deku.costume.smiling.png | banner deku.costume.smiling.png | ||
− | |||
banner_scale fillscreen | banner_scale fillscreen | ||
− | |||
small_icon_size 64 | small_icon_size 64 | ||
− | |||
big_icon_size 144 | big_icon_size 144 | ||
− | |||
selection_big icons/os_LoveSalem.png | selection_big icons/os_LoveSalem.png | ||
− | |||
selection_small icons/os_LoveSalem.png | selection_small icons/os_LoveSalem.png | ||
− | |||
font fonts/ubuntu-mono-16.png | font fonts/ubuntu-mono-16.png | ||
− | |||
resolution 1920 1080 | resolution 1920 1080 | ||
− | |||
use_graphics_for grub,linux | use_graphics_for grub,linux | ||
− | |||
showtools memtest,about,reboot | showtools memtest,about,reboot | ||
− | |||
scanfor internal,external,optical | scanfor internal,external,optical | ||
− | |||
uefi_deep_legacy_scan | uefi_deep_legacy_scan | ||
− | |||
scan_delay 0 | scan_delay 0 | ||
− | |||
also_scan_dirs boot,ESP2:EFI/linux/kernels | also_scan_dirs boot,ESP2:EFI/linux/kernels | ||
− | |||
scan_all_linux_kernels 1 | scan_all_linux_kernels 1 | ||
− | |||
fold_linux_kernels true | fold_linux_kernels true | ||
− | |||
menuentry Linux { | menuentry Linux { | ||
− | |||
icon EFI/refind/icons/os_linux.png | icon EFI/refind/icons/os_linux.png | ||
− | |||
volume 904404F8-B481-440C-A1E3-11A5A954E601 | volume 904404F8-B481-440C-A1E3-11A5A954E601 | ||
− | |||
loader bzImage-3.3.0-rc7 | loader bzImage-3.3.0-rc7 | ||
− | |||
initrd initrd-3.3.0.img | initrd initrd-3.3.0.img | ||
− | |||
options "ro root=UUID=5f96cafa-e0a7-4057-b18f-fa709db5b837" | options "ro root=UUID=5f96cafa-e0a7-4057-b18f-fa709db5b837" | ||
− | |||
disabled | disabled | ||
− | |||
} | } | ||
− | </ | + | </syntaxhighlight> |
Revision as of 22:44, 14 September 2020
My screenshots
My refind.conf
timeout 0
hideui singleuser
banner deku.costume.smiling.png
banner_scale fillscreen
small_icon_size 64
big_icon_size 144
selection_big icons/os_LoveSalem.png
selection_small icons/os_LoveSalem.png
font fonts/ubuntu-mono-16.png
resolution 1920 1080
use_graphics_for grub,linux
showtools memtest,about,reboot
scanfor internal,external,optical
uefi_deep_legacy_scan
scan_delay 0
also_scan_dirs boot,ESP2:EFI/linux/kernels
scan_all_linux_kernels 1
fold_linux_kernels true
menuentry Linux {
icon EFI/refind/icons/os_linux.png
volume 904404F8-B481-440C-A1E3-11A5A954E601
loader bzImage-3.3.0-rc7
initrd initrd-3.3.0.img
options "ro root=UUID=5f96cafa-e0a7-4057-b18f-fa709db5b837"
disabled
}