Posts: 137
duncan_mk
Joined: 19 Sep 2012
#1
I guess I already know the answer to this. I have a"quick access" menu on my icewm toolbar which contains a number of sub-menus. I have tried to introduce a sub-menu to one of the sub-menus - but it doesn't show on the toolbar.

The answer: menus can have sub-menus but submenus can't (ie: icewm doesn't allow sub-sub-menus) - or am I missing something?

Code: Select all

#######################    Open Menu MyStuff-0
    menu"MyStuff" /usr/local/share/xsw/tutorial/tux.png 
    {
#        prog"fbrun" /usr/share/icons/BRIT-ICONS/scalable/gnome-run.svg /usr/bin/fbrun
        prog"fbrun" /usr/share/icons/gTangish-2.0a1/48x48/apps/gnome-run.png /usr/bin/fbrun
        prog"Synaptic" /usr/share/icons/HighContrast/scalable/actions/go-down.svg /home/dmk-antiX/Documents/MyScripts/The_Rock/LaunchSyn.sh
        prog"leafpad" /usr/share/icons/hicolor/scalable/apps/leafpad.svg /usr/bin/leafpad

#######################  Nested Menus-1
        menu"FileManagers" /usr/share/icons/HighContrast/scalable/apps/system-file-manager.svg 
        {
            prog"Thunar" /usr/share/icons/hicolor/scalable/apps/Thunar.svg /usr/bin/Thunar
            prog"RoxFM" /usr/share/icons/hicolor/48x48/apps/spacefm-48-folder-red.png /usr/bin/rox
            prog"SpaceFM" /usr/share/icons/hicolor/48x48/apps/spacefm-48-folder-blue.png /usr/bin/spacefm
        } #    END FileManagers
#######################-2
        menu"GraphicStuff" /usr/share/icons/default.kde4/48x48/categories/applications-graphics.png
        {
            prog"ScreenShot" /usr/share/icons/Buuf-Deuce/128x128/apps/gnome-screenshot.png /usr/local/bin/antixscreenshot.sh
            prog"kpaint" /usr/share/icons/hicolor/48x48/apps/kolourpaint.png /usr/bin/kolourpaint
            prog"fotoxx" /usr/share/fotoxx/icons/fotoxx.png /usr/bin/fotoxx
        }    # END GraphicStuff
#######################-3
        menu"Utlities" /usr/share/icons/SimplyGrey/scalable/apps/file-manager.svg
        {
            prog"galculator" /usr/share/icons/SimplyGrey/scalable/apps/accessories-calculator.svg /usr/bin/galculator
            prog"Control Center" /usr/share/icons/gTangish-2.0a1/32x32/categories/preferences-desktop.png antixcc.sh
#######################-3.1
            menu"NetWork" /usr/share/icons/Tangish-2.0a1/48x48/network-wireless.png
            {
                prog"iwscanner" /usr/share/iwscanner/iwscanner.png /home/dmk-antiX/Documents/MyScripts/The_Rock/Launch-iwscan.sh
            }    # END Utilities/NetWork (3.1)
        }    # End Utilities (3)
    }    # Close Menu MyStuff (0)
# ______________________________________________________________

    prog"cherrytree" /usr/share/icons/hicolor/scalable/apps/cherrytree.svg /usr/bin/cherrytree /home/dmk-antiX/Documents/NoteTakers/CherryTree/CherryTree.ctd
    prog"Icedove" /usr/share/icons/gTangish-2.0a1/48x48/apps/thunderbird.png /usr/bin/icedove
    prog"FireFox" /usr/share/icons/gTangish-2.0a1/48x48/apps/firefox.png /usr/bin/iceweasel
    prog"ksysguard" /usr/share/icons/gTangish-2.0a1/48x48/apps/ksysguard.png /usr/bin/ksysguard
    prog"Terminal" xterm roxterm
dmk