I installed xubuntu-desktop
using tasksel
on top of my default Ubuntu unity, but I can't find where the XFCE menu is. Here is a picture:
Asked
Active
Viewed 1.2k times
6

Fabby
- 34,259

user3666471
- 163
-
1Welcome to Ask Ubuntu! ;-) I'm sorry and, please, blame it on me: I'm confused and confusing... But... What's your question??? :/ Please visit the Ask Ubuntu Tour to better understand how this site works, as it is quite different from a forum... – Fabby Apr 09 '15 at 14:43
-
@Fabby It seems clear enough to me. He installed xubuntu-desktop through taskel but the "xfce menu" isn't there (as you can see in the screenshot). – Seth Apr 11 '15 at 04:15
-
@Seth: Close vote retracted... But I wasn't the only one that didn't understand "whisker" apparently. Question edited... – Fabby Apr 11 '15 at 07:05
1 Answers
6
The XFCE-Menu you are talking about is called xfce4-whiskermenu-plugin
. It is a plugin that lives in a xfce4 panel. So make sure you have xfce4 and the whiskermenu installed.
Check if Whisker Menu is installed
Ubuntu Software Center way
Go into the ubuntu software center and check if whisker menu is installed searching for it and see if there is a green check mark. If not install it.
Terminal way
Check if whiskermenu is installed
dpkg -s xfce4-whiskermenu-plugin
If not installed install it
sudo apt-get install xfce4-whiskermenu-plugin
Add Whisker Menu to your XFCE4 Panel
If you have installed the package properly you should be able to add it to an xfce4 panel.
- Right click the bar you have in your screenshot
- Click
Panel
- Click
Add New Items..
- Search for whisker in your items and add it
Whiskermenu should appear now in your panel.
Edit Whisker Menu
If you want to edit the whiskermenu you need the package menulibre
which is also available in the software center.
Installing it works like above
sudo apt-get install menulibre
or via the Ubuntu Software Center

TomTom
- 362
-
-
All the steps necessary to do this were already in in the answer. To do all this you don't need the terminal. But ok.. added the commands. – TomTom Apr 11 '15 at 08:34
-