Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Feature request] Icon for submenu
#1
Good morning all,

I have not found how to add icons to the halt, reboot, search ... return submenu. Maybe this option could be integrated in a future version?

Thanks.
Reply
#2
In fact, there is class defined for these sub menu and I just haven't had time to update the document in the website.

For example, see  https://github.com/ventoy/Ventoy/blob/ma.../power.cfg
Code:
menuentry Reboot --class=power_reboot {
    echo -e '\n\nSystem is rebooting ... \n'
    sleep 1
    reboot
}

menuentry Halt --class=power_halt {
    echo -e '\n\nSystem is halting ... \n'
    sleep 1
    halt
}

menuentry 'Return to menu [Esc]' --class=vtoyret VTOY_RET {
    echo 'Return ...'
}

--class=xxx is the class defination.

power_reboot  power_halt  are the corresponding class and you just need to prepare a power_reboot.png  and power_halt.png
Reply
#3
great i immediately test that
Reply
#4
I put icons in my folder :

boot_g4d.png
power_reboot.png
boot_windows.png
power_halt.png
vtoyret.png
debug_autoinstall.png
debug_json.png
debug_menualias.png
debug_menuclass.png
debug_persistence.png
debug_theme.png
boot_disk.png

I am missing an icon for "Check global control plugin configuration", I did not find a corresponding class. In any case it works great. thanks again
https://github.com/ventoy/Ventoy/blob/ma.../debug.cfg


Code:
submenu 'Check plugin json configuration (ventoy.json)' --class=debug_json {
    menuentry 'Check global control plugin configuration' { <--------------------missing class : --class=debug_global ??
        set pager=1
        vt_check_plugin_json $vt_plugin_path control $iso_path
       
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
Reply
#5
Yes, I will add it in the next release.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)