If you are linux user and using ubuntu or some other distribution then this may help you to remove menu icon arrow. Here’s how to do this.
Before you do that you need some package to be in your system. If not just copy and paste these commands in terminal.
1 sudo apt-get install apt-build //if prompt, choose your options and processor type.
1
2 sudo apt-build source gnome-panel
sudo apt-get build-dep gnome-panel
I believe you already have gnome-panel_2.30.2.orig.tar.gz in /var/cache/apt-build/build/ folder.
- Now go to that folder using following
1cd /var/cache/apt-build/build/
- Then unzip the folder
1tar -xzvf /var/cache/apt-build/build/gnome-panel_2.30.2.orig.tar.gz -C ~/
(this will extract the folder into your home folder after job you can remove it.)
- Open
1panel-menu-button.c
for necessary changes
1cd ~/gnome-panel-2.30.2/ sudo gedit gnome-panel/panel-menu-button.c - Find the line
1"has-arrow", <strong>TRUE</strong>, NULL);
and change it to
1"has-arrow", <strong>FALSE</strong>,NULL); - Finally run these commands
1sudo ./configure1sudo make1sudo make install1sudo killall gnome-panel
That’s it you are done.
Related posts:
One Response to “Remove GNOME Menu Icon Arrow”








Thx for trying to describe the terminlogy towards the novices!