Often you see people say that the GIMP is too complicated and they are looking for a simpler alternative.
I think it would be a useful feature to have a tick box in the preferences that says "Simple Menus" and it hid all but the basic commands from the Menu Bar. To be completely flexible (as you will invariably have people who don't want everything but want more than the basic) you could have a "Custom Menu" option that allowed you to pick and choose the items in the Menu manually. What do you think? I decided to try to see if I could attempt this with xml config by modifying share/gimp/2.0/menus/image-menu.xml The original menus are still available if you right-click on the editor so functionality is not completely lost. For instance, the edit section in the file now has <menu action="edit-menu" name="Edit"> <placeholder name="Undo"> <menuitem action="edit-undo"/> <menuitem action="edit-redo"/> </placeholder> <separator/> <placeholder name="Cut"> <menuitem action="edit-cut"/> </placeholder> <placeholder name="Copy"> <menuitem action="edit-copy"/> </placeholder> <placeholder name="Paste"> <menuitem action="edit-paste"/> </placeholder> <menu action="edit-paste-as-menu" name="Paste as"> <menuitem action="edit-paste-as-new-short"/> <menuitem action="edit-paste-as-new-layer"/> </menu> <separator/> <placeholder name="Clear"> <menuitem action="edit-clear"/> </placeholder> <placeholder name="Fill"> <menuitem action="edit-fill-fg"/> <menuitem action="edit-fill-bg"/> </placeholder> <separator/> <placeholder name="Preferences"> <menuitem action="dialogs-preferences"/> <menuitem action="dialogs-keyboard-shortcuts"/> </placeholder> <separator/> </menu> This gives Edit Undo Redo Cut Copy Paste Paste as - New Image New Layer New Brush New Pattern Clear Fill with BG Color Fill with FG Color Preferences Keyboard shortcuts Units Units (http://docs.gimp.org/2.8/en/plug-in-unit-editor.html) is not mentioned in the xml file. How can I remove it from the menus? The Paste as sub-menu has only 2 items in the xml but 4 items in the edit menu. Why is that?