Ultimate customisation - Printable Version +- Ventoy Forums (https://forums.ventoy.net) +-- Forum: Ventoy General Use —— Ventoy 使用交流 (https://forums.ventoy.net/forumdisplay.php?fid=1) +--- Forum: Ventoy Discussion Forum (https://forums.ventoy.net/forumdisplay.php?fid=2) +--- Thread: Ultimate customisation (/showthread.php?tid=1669) |
Ultimate customisation - AAA3A - 05-05-2021 Hello, To make the customization of Ventoy even more advanced, would it be possible to allow the customization of the F2, F4 and F5 sub-menu? Code to be placed in grub.cfg : Code: function ventoy_power { Thank you very much for your work! RE: Ultimate customisation - longpanda - 05-05-2021 You can add your own grub.cfg and launch it with F6. https://www.ventoy.net/en/plugin_grubmenu.html RE: Ultimate customisation - AAA3A - 05-05-2021 (05-05-2021, 01:44 PM)longpanda Wrote: You can add your own grub.cfg and launch it with F6. It's not that. Would it be possible to create .cfg in the main partition. If these files exist, grub.cfg launches them instead of normal files like debug.cfg, power.cfg... RE: Ultimate customisation - longpanda - 05-06-2021 F2/F4/F5 are used by Ventoy and have some special process in the C source code (e.g. cannot be nested; use the same variable context...). So you can only use F6 for custom grub menu. RE: Ultimate customisation - AAA3A - 05-06-2021 Hello, is it possible to know which function or file searches for images and folders on the key? Who creates the menu entries for each folder in treetview mode? RE: Ultimate customisation - AAA3A - 05-17-2021 In the next update of Ventoy (1.0.45), you should really add this feature. It's very quick to implement. Just drag the code from the first post in this thread into grub.cfg (replace functions for menus). Then users of this wonderful tool would just have to create "F2.cfg", "F4.cfg", "F5.cfg" and "F6.cfg" files in the "Ventoy Submenu" folder to modify the Ventoy submenus. When upgrading, all the customization will remain as before ! I tested everything and it works perfectly without changing the rest of the Ventoy structure! RE: Ultimate customisation - longpanda - 05-18-2021 F2/F4/F5 are used by Ventoy and have some special process in the C source code (e.g. cannot be nested; use the same variable context...). So you can only use F6 for custom grub menu. For example: Now, if you press F2, then you can NOT press F3/F4 again unless you press ESC to return to the main menu. This is one of the Ventoy's special process in the C source code. variable context is another aspect, I need to protect the variables used by Ventoy to prevent modified by the custom script. This is implemented by a new variable context. So not so simple and I think F6 with submenu is enough now. RE: Ultimate customisation - AAA3A - 05-18-2021 (05-18-2021, 01:17 AM)longpanda Wrote: F2/F4/F5 are used by Ventoy and have some special process in the C source code (e.g. cannot be nested; use the same variable context...). I tested it and being able to modify the other sub-menus by adding options if necessary could be a plus. Everything works perfectly and I can easily change these menus. |