|
menuentry '启动Windows11系统(UEFI模式)' --class=nt6 {
search --fs-uuid --set=root 5639-0CDE
echo $vtoydev
echo $root
ls
ls -l
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
boot
}
menuentry "重启" --class=restart {
reboot
}
menuentry "关机" --class=shutdown {
halt
}
menuentry '返回上级一菜单 [Esc]' --class=vtoyret VTOY_RET {
echo 'Return ...'
}
"menu_class": [
{
"key": "nt6",
"class": "windows"
},
{
"key": "restart",
"class": "restart"
},
{
"key": "shutdown",
"class": "shutdown"
},
{
"key": "vtoyret VTOY_RET",
"class": "cancel"
}
]
请问大佬,返回和win11不显示图标有办法吗,重启和关机的图标正常显示,万分感谢
|
|