Page 8 of 8 FirstFirst ... 678
Results 71 to 74 of 74

Thread: HOWTO: GNOME - Remove Menu Icon Arrow

  1. #71
    Join Date
    Jun 2007
    Location
    Denmark
    Beans
    127
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: HOWTO: GNOME - Remove Menu Icon Arrow

    Quote Originally Posted by onethirtythreeseven View Post
    I'm not sure I follow. Was this after you went through the decompiling process? Could you break down exactly what you did? I'm still trying to learn how to do things like this in Ubuntu.
    Alright, to do what I did here's what you do.

    assuming you've still got the files in your /var/cache/apt-build/build/ -folder try doing

    Code:
    tar -xzvf /var/cache/apt-build/build/gnome-panel_2.30.2.orig.tar.gz -C ~/
    to extract the contents of the file I mentioned to your home dir. -If this fails for some reason you could just navigate there via. the file browser (nautilus) and copy the gnome-panel_2.30.2.orig.tar.gz -file to your home dir, then extract it. Then do

    Code:
    cd ~/gnome-panel-2.30.2/
    sudo gedit gnome-panel/panel-menu-button.c
    and do the needed changes to the file (what andrek posted)

    then run the final commands
    Code:
    sudo ./configure
    sudo make
    sudo make install
    sudo killall gnome-panel
    after that you can remove the gnome-panel-2.30.2 folder from your home dir.

    Hope it works for you too...
    Last edited by OliverN; November 11th, 2010 at 09:56 AM. Reason: top secret

  2. #72
    Join Date
    May 2010
    Beans
    10

    Re: HOWTO: GNOME - Remove Menu Icon Arrow

    Perfect! Thanks.

  3. #73
    Join Date
    Oct 2008
    Beans
    3

    Re: HOWTO: GNOME - Remove Menu Icon Arrow

    thanks oliver, it worked for my maverick, too

  4. #74
    Join Date
    Feb 2007
    Beans
    1

    Re: HOWTO: GNOME - Remove Menu Icon Arrow

    Quote Originally Posted by jacksonpollack View Post
    The problem with the simpler method above is that yes, it gets rid of that pesky black arrow, but it also changes/deletes the icon that separates the notification area from the rest of the panel (also the one to the left of the window list).
    Took me a while to figure out (this will make the handles blank as well):
    Code:
    style "panel-arrow-remove"
    #the following removes the arrows from the panel
    {
    engine "pixmap"
        {
        image
        {
            function    = ARROW
            recolorable    = TRUE
            overlay_file    = "arrows/arrow-blank.png"
            overlay_border    = {2,2,2,2}
            overlay_stretch    = FALSE
            arrow_direction    = UP
        }
        image
        {
            function    = ARROW
            recolorable    = TRUE
            overlay_file    = "arrows/arrow-blank.png"
            overlay_border    = {2,2,2,2}
            overlay_stretch    = FALSE
            arrow_direction    = DOWN
        }
        image
        {
          function			= HANDLE
          recolorable		= TRUE
          overlay_file		= "arrows/arrow-blank.png"
          overlay_stretch	= FALSE
          orientation		= VERTICAL
        }
        image
        {
          function			= HANDLE
          overlay_file		= "arrows/arrow-blank.png"
          overlay_stretch 	= FALSE
          orientation		= HORIZONTAL
        }
        }
    }
    
    widget_class "*PanelToplevel*" 			style "panel-arrow-remove"

Page 8 of 8 FirstFirst ... 678

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •