Gnome menu applet, remove arrow

I've been looking on how to remove the arrow frome the gnome menu applet and found this guide. How could I do the same thing with arch?
http://ubuntuforums.org/showthread.php?t=733808

Hi,
Try to modify the master page and overload the css style.  Have a look :
https://msdn.microsoft.com/en-us/library/office/ms466994(v=office.14).aspx.
If you need to modify the style just for one page only, you could  add a script webpart instead to modify the master page
Regards.
Gilles Martinez
Twitter
Blog
Please mark as helpful/answer if this resolved your post

Similar Messages

  • Customizing menu to remove arrow with use simple rendering

    Hello!
    Im continuing the development of a site in Sharepoint 2013 site, we have a left bar menu that works well, but I need to remove or center the small black arrows that appear when an item has a submenu. I have UseSimpleRendering = true, If i disable this, the
    style the menu looses it´s current style which doesn´t work for me.
    I also attempted setting staticEnableDefaultPopoutImage = false and dynamicEnableDefaultPopoutImage = false to no avail.
    Ultimately I tried changing to a custom image but it takes no effect.
    Any help please?

    Hi,
    Try to modify the master page and overload the css style.  Have a look :
    https://msdn.microsoft.com/en-us/library/office/ms466994(v=office.14).aspx.
    If you need to modify the style just for one page only, you could  add a script webpart instead to modify the master page
    Regards.
    Gilles Martinez
    Twitter
    Blog
    Please mark as helpful/answer if this resolved your post

  • Gnome-menu-file-browser-applet

    http://code.google.com/p/gnome-menu-fil … er-applet/
    Remeber winXP? And that little pop-up menu that could be used to browse trought directories (folders). I used it to browse my music folder.
    This plugin is about the same. And it is cool, nice addon for gnome panel.
    I dont have a clue about pkgbuilds...
    Tried to do this one but wiki page confused me... that part with cmake and stuff...
    So please help me! This is what i made so far...
    pkgname=file-browser-applet
    pkgver=0.6.4
    pkgrel=1
    pkgdesc="Browse, open and manage files in your computer directly from the GNOME panel."
    arch=(i686 x86_64)
    license=('GPL')
    depends=('gnome-panel>=2.26.0' 'libpanel-applet>=2.0' 'libgio>=2.0')
    makedepends=('pkgconfig' 'cmake>=2.4.7 ')
    optdepends=( 'libgtkhotkey-1.0' 'brasero' 'file-roller' 'rubber')
    url="http://code.google.com/p/gnome-menu-file-browser-applet/"
    options=(!emptydirs)
    install=file-browser.install
    source=(http://gnome-menu-${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz
    md5sums=('3874795cf8c02b0749a0b09c7466f677')

    All those files seem to have is application names. What specific file did you use to edit the menus?

  • A Menu Applet Project (need help)

    The Dinner Menu Applet
    I would need help with those codes ...
    I have to write a Java applet that allows the user to make certain choices from a number of options and allows the user to pick three dinner menu items from a choice of three different groups, choosing only one item from each group. The total will change as each selection is made.
    Please send help at [email protected] (see the codes of the project at the end of that file... Have a look and help me!
    INSTRUCTIONS
    Design the menu program to include three soups, three
    entrees, and three desserts. The user should be informed to
    choose only one item from each group.
    Use the following information to create your project.
    Clam Chowder 2.79
    Vegetable soup 2.99
    Peppered Chicken Broth 2.49
    Chicken 12.79
    Fish 10.99
    Beef 14.99
    Vanilla Ice Cream 2.79
    Rice Pudding 2.99
    Cheesecake 4.29
    The user shouldn�t be able to choose more than one item
    from the same group. The item prices shouldn�t be visible to
    the user.
    When the user makes his or her first choice, the running
    total at the bottom of the applet should show the price of
    that item. As each additional item is selected, the running
    total should change to reflect the new total cost.
    The dinner menu should be 200 pixels wide �� 440 pixels
    high and be centered on the browser screen. The browser
    window should be titled �The Menu Program.�
    Use 28-point, regular face Arial for the title �Dinner Menu.�
    Use 16-point, bold face Arial for the dinner menu group titles
    and the total at the bottom of the applet. Use 14-point regular
    face Arial for individual menu items and their prices. If you
    do not have Arial, you may substitute any other sans-serif
    font in its place. Use Labels for the instructions.
    The checkbox objects will use the system default font.
    Note: Due to complexities in the way that Java handles
    numbers and rounding, your price may display more than
    two digits after the decimal point. Since most users are used
    to seeing prices displayed in dollars and cents, you�ll need to
    display the correct value.
    For this project, treat the item prices as integers. For example,
    enter the price of cheesecake as 429 instead of 4.29. That
    way, you�ll get an integer number as a result of the addition.
    Then, you�ll need to establish two new variables in place of
    the Total variable. Run the program using integers for the
    prices, instead of float variables with decimals.
    You�ll have the program perform two mathematical functions
    to get the value for the dollars and cents variables. First,
    divide the total price variable by 100. This will return a
    whole value, without the remainder. Then get the mod of the
    number versus 100, and assign this to the cents variable.
    Finally, to display the results, write the following code:
    System.out.println("Dinner Price is $ " + dollars +"." + cents);
    Please send code in notepad or wordpad to [email protected]
    Here are the expectations:
    HTML properly coded
    Java source and properly compiled class file included
    Screen layout as specified
    All menu items properly coded
    Total calculates correctly
    * MenuApplet.java
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    * @author Rulx Narcisse
         E-mail address: [email protected]
    public class MenuApplet extends java.applet.Applet implements ItemListener{
    //Variables that hold item price:
    int clamChowderPrice= 279;
    int vegetableSoupPrice= 299;
    int pepperedChickenBrothPrice= 249;
    int chickenPrice= 1279;
    int fishPrice= 1099;
    int beefPrice= 1499;
    int vanillaIceCreamPrice= 279;
    int ricePuddingPrice= 299;
    int cheeseCakePrice =429;
    int dollars;
    int cents=dollars % 100;
    //cents will hold the modulus from dollars
    Label entete=new Label("Diner Menu");
    Label intro=new Label("Please select one item from each category");
    Label intro2=new Label("your total will be displayed below");
    Label soupsTrait=new Label("Soups---------------------------");
    Label entreesTrait=new Label("Entrees---------------------------");
    Label dessertsTrait=new Label("Desserts---------------------------");
      *When the user makes his or her first choice, the running
         total (i.e. dollars) at the bottom of the applet should show the price of
         that item. As each additional item is selected, the running
         total should change to reflect the new total cost.
    Label theDinnerPriceIs=new Label("Dinner Price is $ "+dollars +"."+cents);
      *Crating face, using 28-point, regular face Arial for the title �Dinner Menu.�
         Using 16-point, bold face Arial for the dinner menu group titles
         and the total at the bottom of the applet & using 14-point regular
         face Arial for individual menu items and their prices.
    Font bigFont = new Font ("Arial", Font.PLAIN,28);
    Font bigFont2 = new Font ("Arial", Font.BOLD,16);
    Font itemFont = new Font ("Arial", Font.PLAIN,14);
    //Here are the radiobutton on the applet...
    CheckboxGroup soupsG = new CheckboxGroup();
        Checkbox cb1Soups = new Checkbox("Clam Chowder", soupsG, false);
        Checkbox cb2Soups = new Checkbox("Vegetable Soup", soupsG, true);
        Checkbox cb3Soups = new Checkbox("Peppered Chicken Broth", soupsG, false);
    CheckboxGroup entreesG = new CheckboxGroup();
        Checkbox cb1Entrees= new Checkbox("Chicken", entreesG, false);
        Checkbox cb2Entrees = new Checkbox("Fish", entreesG, true);
        Checkbox cb3Entrees = new Checkbox("Beef", entreesG, false);
    CheckboxGroup dessertsG = new CheckboxGroup();
        Checkbox cb1Desserts= new Checkbox("Vanilla Ice Cream", dessertsG, false);
        Checkbox cb2Desserts = new Checkbox("Pudding Rice", dessertsG, true);
        Checkbox cb3Desserts = new Checkbox("Cheese Cake", dessertsG, false);
        public void init() {
            entete.setFont(bigFont);
            add(entete);
            intro.setFont(itemFont);
            add(intro);
            intro2.setFont(itemFont);
            add(intro2);
            soupsTrait.setFont(bigFont2);
            add(soupsTrait);
            cb1Soups.setFont(itemFont);cb2Soups.setFont(itemFont);cb3Soups.setFont(itemFont);
            add(cb1Soups); add(cb2Soups); add(cb3Soups);
            cb1Soups.addItemListener(this);cb2Soups.addItemListener(this);cb2Soups.addItemListener(this);
            entreesTrait.setFont(bigFont2);
            add(entreesTrait);
            cb1Entrees.setFont(itemFont);cb2Entrees.setFont(itemFont);cb3Entrees.setFont(itemFont);
            add(cb1Entrees); add(cb2Entrees); add(cb3Entrees);
            cb1Entrees.addItemListener(this);cb2Entrees.addItemListener(this);cb2Entrees.addItemListener(this);
            dessertsTrait.setFont(bigFont2);
            add(dessertsTrait);
            cb1Desserts.setFont(itemFont);cb2Desserts.setFont(itemFont);cb3Desserts.setFont(itemFont);
            add(cb1Desserts); add(cb2Desserts); add(cb3Desserts);
            cb1Desserts.addItemListener(this);cb2Desserts.addItemListener(this);cb2Desserts.addItemListener(this);
            theDinnerPriceIs.setFont(bigFont2);
            add(theDinnerPriceIs);
           public void itemStateChanged(ItemEvent check)
               Checkbox soupsSelection=soupsG.getSelectedCheckbox();
               if(soupsSelection==cb1Soups)
                   dollars +=clamChowderPrice;
               if(soupsSelection==cb2Soups)
                   dollars +=vegetableSoupPrice;
               else
                   cb3Soups.setState(true);
               Checkbox entreesSelection=entreesG.getSelectedCheckbox();
               if(entreesSelection==cb1Entrees)
                   dollars +=chickenPrice;
               if(entreesSelection==cb2Entrees)
                   dollars +=fishPrice;
               else
                   cb3Entrees.setState(true);
               Checkbox dessertsSelection=dessertsG.getSelectedCheckbox();
               if(dessertsSelection==cb1Desserts)
                   dollars +=vanillaIceCreamPrice;
               if(dessertsSelection==cb2Desserts)
                   dollars +=ricePuddingPrice;
               else
                   cb3Desserts.setState(true);
                repaint();
        }

    The specific problem is that when I load he applet, the radio buttons do not work properly and any calculation is made.OK.
    I had a look at the soup radio buttons. I guess the others are similar.
    (a) First, a typo.
    cb1Soups.addItemListener(this);cb2Soups.addItemListener(this);cb2Soups.addItemListener(this);That last one should be "cb3Soups.addItemListener(this)". The peppered chicken broth was never responding to a click. It might be a good idea to write methods that remove such duplicated code.
    (b) Now down where you respond to user click you have:
    Checkbox soupsSelection=soupsG.getSelectedCheckbox();
    if(soupsSelection==cb1Soups)
        dollars +=clamChowderPrice;
    if(soupsSelection==cb2Soups)
        dollars +=vegetableSoupPrice;
    else
        cb3Soups.setState(true);What is that last bit all about? And why aren't they charged for the broth? Perhaps it should be:
    Checkbox soupsSelection=soupsG.getSelectedCheckbox();
    if(soupsSelection==cb1Soups) {
        dollars +=clamChowderPrice;
    } else if(soupsSelection==cb2Soups) {
        dollars +=vegetableSoupPrice;
    } else if(soupsSelection==cb3Soups) {
        dollars +=pepperedChickenBrothPrice;
    }Now dollars (the meal price in cents) will have the price of the soup added to it every time.
    (c) It's not enough to just calculate dollars, you also have to display it to the user. Up near the start of your code you have
    Label theDinnerPriceIs=new Label("Dinner Price is $ "+dollars +"."+cents);It's important to realise that theDinnerPriceIs will not automatically update itself to reflect changes in the dollars and cents variables. You have to do this yourself. One way would be to use the Label setText() method at the end of the itemStateChanged() method.
    (d) Finally, the way you have written itemStateChanged() you are continually adding things to dollars. Don't forget to make dollars zero at the start of this method otherwise the price will go on and on accumulating which is not what you intend.
    A general point: If you have any say in it use Swing (JApplet) rather than AWT. And remember that both Swing and AWT have forums of their own which may be where you get the best help for layout problems.

  • GNOME Menu

    Hej,
    short question: is there ANY way to edit the gnome menu to my needs? meaning editing the places menu (like removing the network-entry  etc) and removing e.g. the "lock screen"-entry. i do not understand why the gnome-developers don't just set up an easily editable xml-file to define the menu structure.
    if there should not be an acceptable way for doing so, is there any alternative to the gnome-menu?
    if not so, i guess i'm gonna switch to xfce. that menu issue is really annoying with gnome. don't get it
    thanks in advance

    I don't know if this works.
    Alacarte
    From Wikipedia, the free encyclopedia
    Alacarte (previously the Simple Menu Editor for GNOME or SMEG) is a menu editor for the GNOME desktop. It is part of the GNOME 2.16 release.
    The menu "Places" is not available for editing. You can edit the places menu somewhat with this: $gedit ~/.gtk-bookmarks, or use gconf-editor (e.g. /system/storage/drives/_org_freedesktop_.../mount_options)

  • Sane way of adding/editing gnome menu entries like ubuntu does?

    how can I get the same or similar functionality to the gnome menu editorin ubuntu?  i think it was called alacarte menu editor.  I love archlinux its much faster and cooler than ubuntu becuase I get to choose everything I want and nothing else.  But editing the menu is a necessity.  If there is no alternative to editing countless linked files then so be it, but I would really like the ability to edit and add and remove programs from the menu.  Anyone know how to do this?

    pacman -S alacarte

  • GNOME Menu - Openbox Menu

    I'm trying to switch to Openbox from GNOME (yay) and used `mmaker -vf OpenBox3` to generate a menu. Except, it's a mess with tons of things I'd never use.
    So my question, is it possible to convert GNOME menu entries to Openbox menu entries?

    mmaker -vf OpenBox3
    has pretty much done just that.
    The easiest thing to do is open .config/openbox/menu.xml in an editor and remove all the entries that you don't want.
    The beauty of OB is you can make it do just about anything...

  • [SOLVED] hdapsd/gnome-hdaps-applet/kernel26/tp_smapi: Some issues

    Hej all,
    I posted some comments on the package hdapsd http://aur.archlinux.org/packages.php?ID=5401. At the moment, loading the modules from tp_smapi and starting hdaps works without problems, when enabling the unload_heads by executing as root
    echo -1 > /sys/block/sda/device/unload_heads
    Now shaking the laptop (only a bit;) results in the output of hdapsd
    Fri Mar 6 17:30:48 2009: Starting hdapsd
    Fri Mar 6 17:33:16 2009: parking
    Fri Mar 6 17:33:19 2009: Error! Not parked when we thought we were... (paged out and timer expired?)
    Fri Mar 6 17:33:19 2009: un-parking
    But a simultaneously played movie stops... So something is working, but also the new gnome-hdaps-applet (version 20081204-1) does not change the "play" sign into the "pause" sign while shaking... All this worked while using the bit outdated kernel26tp with old versions of hdapsd and gnome-hdaps-applet.
    So, does someone has ideas how to debug this further?
    Thanks,
    Andreas
    Edit: The problem is solved and had nothing to do with the software/kernel. I needed to update the firmware of my drive with the help of lenovos FWHD55.ISO...(in fact it was a bit harder since I own a non-IBM harddrive...see here http://www.thinkwiki.org/wiki/Talk:Prob … hard_disks and search for hfui15.exe, don't forget the -pm switch to tell the badly programmed software that your HD is Primary master...)
    Last edited by aneiser (2009-03-08 11:15:14)

    Hej all,
    I posted some comments on the package hdapsd http://aur.archlinux.org/packages.php?ID=5401. At the moment, loading the modules from tp_smapi and starting hdaps works without problems, when enabling the unload_heads by executing as root
    echo -1 > /sys/block/sda/device/unload_heads
    Now shaking the laptop (only a bit;) results in the output of hdapsd
    Fri Mar 6 17:30:48 2009: Starting hdapsd
    Fri Mar 6 17:33:16 2009: parking
    Fri Mar 6 17:33:19 2009: Error! Not parked when we thought we were... (paged out and timer expired?)
    Fri Mar 6 17:33:19 2009: un-parking
    But a simultaneously played movie stops... So something is working, but also the new gnome-hdaps-applet (version 20081204-1) does not change the "play" sign into the "pause" sign while shaking... All this worked while using the bit outdated kernel26tp with old versions of hdapsd and gnome-hdaps-applet.
    So, does someone has ideas how to debug this further?
    Thanks,
    Andreas
    Edit: The problem is solved and had nothing to do with the software/kernel. I needed to update the firmware of my drive with the help of lenovos FWHD55.ISO...(in fact it was a bit harder since I own a non-IBM harddrive...see here http://www.thinkwiki.org/wiki/Talk:Prob … hard_disks and search for hfui15.exe, don't forget the -pm switch to tell the badly programmed software that your HD is Primary master...)
    Last edited by aneiser (2009-03-08 11:15:14)

  • Gnome Panel applet that shows output of system command.

    Hi all;
    Because of the recent hostile takeover of #archlinux channel by tilling WM fanatics..    I will ask here..
    Does any one know of a Gnome Panel applet that shows the output of system command of your choice?
    For people who Conky is a bit too much and they only want a simple piece of data available (like what is the current IP on ppp0 interface) like me..  this is a necessity.
    If its not in existence I would probably make one.. shouldn't take long, I also would like to hear if there is any interest.
    Thanks

    That's exactly what I was looking for!  Thank you!
    Changed code to:
    $dism = "X:\Windows\System32\Cmd.exe /c start CMD /k dism /apply-image /imagefile:D:\W7x86.wim /index:1 /applydir:C:\"
    And voila, new window opened with the live output of dism.
    new... and have a glazed over look about my eyes to prove it...

  • [SOLVED] Rubyripper icon not displaying in Gnome menu

    Hi.
    The Rubyripper icon doesn't show up in my applications menu (Gnome). The .desktop file reads
    [jm@elroy ~]$ cat /usr/share/applications/rubyripper.desktop | grep Icon
    Icon=rubyripper
    And the icon is present in my filesystem
    [jm@elroy ~]$ find /usr/share/icons/ -name rubyripper.png
    /usr/share/icons/hicolor/128x128/apps/rubyripper.png
    What can I do?
    Last edited by hennes (2008-05-21 06:49:50)

    The icons for the gnome menu have to be located in /usr/share/pixmaps I guess, check if a rubyripper.* icon is present there. If not, copy an icon into that folder [name: rubyripper(.png | .xpm | .svg ...)]
    If present, maybe the icon cache should be updated. Try
    gtk-update-icon-cache
    or
    gtk-update-icon-cache -f /usr/share/icons/{your icon theme}
    to force an overwrite; with root privileges. (I guess your theme is hicolor.)
    I missed some icons too, but I did never mind. One day, they occured... so if nothing helps, wait ^^
    Last edited by chris89 (2008-05-20 20:43:39)

  • Gnome menu has no applications

    So, the gnome menu has no applications. I've never had this problem before.
    Here's a picture, so you know what I mean:

    I'm not a gnome guy, but have you tried https://bbs.archlinux.org/viewtopic.php?id=127651 ?

  • Where is firefox located on my desktop to double click on it. I need to go to tool drop down menu to remove alexa toolbar?

    I want to remove alexa toolbar. I did not have it installed as a program, so I cannot remove it there. i need to know where to find firefox to double click it and and click on drop down menu to remove alexa. I do not know how to do this step by step.

    archhe, do you see a bar at the top of your Firefox window containing items like '''File''', '''Edit''', '''View''' etc? The '''Tools''' item is on the same bar towards the right side.
    In case you are not able to view this bar, do the following: press the '''Alt''' key on your keyboard. Keeping this pressed, type the following keys in this order: V T M.
    I hope you should be able to view the '''Tools''' item now on the top bar of Firefox.

  • Can't start GParted from gnome-menu

    Hi, I have a problem with GParted.
    I know that it worked fine some weeks ago.
    But now it doesn't start from the gnome-menu.
    The strange thing is: if I copy the same command as in the menu ('gksu /usr/sbin/gparted %f') in the terminal Gparted starts.
    Maybe this problem is since the sudo or a gparted upgrade.
    What could be wrong?

    In my Xfce4 installation, it's /usr/share/applications/GParted, which I copied over to ~/.local/share/applications/, as kaixi suggested, and it appeared there as gparted.desktop.  Right-click for Properties > Launcher > Command, and in that field (not wanting to install gksu) I put sudo gparted, which works, thanks.

  • Edit gnome menu globaly (for all new users)?

    Is there some let say clean way to edit default gnome menu entries for new users?
    I know about alacarte, but it edits just users menu.
    What exactly I need, Im preparing a unified arch desktop fot a lot of computers in our office. And I will copy the prepared desktop to all the computers edit things that are host specific and create new user. But 95% users will use 30% of same menu entries, the rest entries are useless for them. I dont want to edit menu for each new single user. But there are let say few users that will use much of the entries, but it is not problem to enable that for few specific users (alse those understand what they are doing so they could do it themselves).
    I was thinking about that like gconf editor for global settings. 
    My workaround will be to copy to every new created user prepared ./.config/menus ./.local/share but I isnt so much elegant:(
    Or maybe there are same files somewhere global but I dont know where (I will replace them with the prepared one)
    Thats why Im asking.

    You could take a look at: /usr/share/applications

  • No gnome menu icons [solved]

    Hi fellas, I have a bit of a problem, it is not vital though, just that there are no icons next to any of the item in any drop-down menu (right mouse button menu, main gnome menu etc...)
    Thanks
    Last edited by sDoky (2009-05-20 14:38:59)

    Ashren wrote:Ok then, please check if gnome-icon-theme is installed - if not install it. It should be since it is a part of gnome.
    Didn't help. It was ok when I first installed the system, I just tried changing icons, it worked at first but after one boot it just didn't load, I tried changing everything back to previous state, it didn't come back up though. What should I do, I don't wanna reinstall the whole system, it took me days to modify it to the way I wanted it.
    Last edited by sDoky (2009-05-20 13:02:44)

Maybe you are looking for