No GUI tools to do this. We'll be editing a file by hand. But before you get too disgusted, remember there's a reason this WM works like greased owl snot even on low end hardware. No bloat!
So, you can either surf in with a file browser and open an editor over the file in situ, or just pop open a terminal and do a fast:
Code:
sudo yum install geany
(If needed.)
and
Code:
geany /home/(your home folder)/.e16/menus/user_apps.menu
You'll end up with something like this:
Contents to add to user_apps.menu:
Code:
"User Application List"
"Thunar" NULL exec "thunar"
"Files" NULL exec "caja --no-desktop"
"PCmanFM" NULL exec "pcmanfm"
"e-term" NULL exec "Eterm"
"Mate Terminal" NULL exec "mate-terminal"
"Terminal" NULL exec "Terminal"
"XTerm" NULL exec "xterm"
"Geany" NULL exec "geany"
"Firefox" NULL exec "firefox"
"Midori" NULL exec "midori"
"Freecell" NULL exec "sol --freecell"
"Audacity" NULL exec "audacity"
"Totem" NULL exec "totem"
"Rhythmbox" NULL exec "rhythmbox"
"Sound preferences" NULL exec "mate-volume-control"
"Screenshot" NULL exec "mate-screenshot --interactive"
"The GIMP" NULL exec "gimp"
"Writer" NULL exec "libreoffice -writer"
"Gkrell" NULL exec "gkrellm"
"System Monitor" NULL exec "mate-system-monitor"
"Authorization" NULL exec "/home/(your-home-directory)/e16-auth-run"
"Yumex" NULL exec "yumex"
Any additional desired user menu entries can be added here. Simply follow the format of the preceding entries. If you got it right, and the app is installed, it will show up in the menu. If you didn't get it right, or it isn't installed (where the system can find it) it just won't show up in the menu.
Note the next-to-last entry in that menu file. <..
..> It's there due to the over Gnome-ification of yumex and several other applications in order to appease/assuage the pointy-headed uber-uppity yard-art bunch. In short, you'll have to run an authentication agent separately once per session to get Yumex to pop an authorization dialogue. It won't run without it. Your other choice is to run yumex via terminal with sudo or su. In both cases it will barf out an error message and fail if you don't run it with the "--root" switch. If you go that route, your terminal entry will need to look like:
or,
Code:
su -c "yumex --root"
I just do the authentication thing, and go all GUI on it.
Also note that I'm using the Mate Authenticator. If you don't have Mate, but do have Gnome, just change the word "mate" to "Gnome" in those commands, and you're good to go.
BTW -- Contents of e16-auth-run file: (Remember to make it executable.)
Code:
#!/bin/bash
/usr/libexec/polkit-mate-authentication-agent-1 &