Slashdot Mirror


User: Quicker31

Quicker31's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Menu integration with Gnome on WindowMaker Development Resumes, Has First Release Since 2006 · · Score: 1

    I found a script a long time ago that would generate a WM Menu based off the gnome menu. It's really nice and I have it as the Applications menu in my WM setup.

    #!/usr/bin/python -tt
    # This has been adapted from Luke Macken's OpenBox menu generation
    # script.

    import gmenu

    def walk_menu(entry):
    if entry.get_type() == gmenu.TYPE_DIRECTORY:
    print '"%s" MENU' % entry.get_name()
    map(walk_menu, entry.get_contents())
    print '"%s" END' % entry.get_name()

    elif entry.get_type() == gmenu.TYPE_ENTRY and not entry.is_excluded:
    print '"%s" EXEC %s' % (entry.get_name(), entry.get_exec())

    print '"Fedora" MENU'
    map(walk_menu, gmenu.lookup_tree('applications.menu').root.get_contents())
    print '"Fedora" END'

  2. Re:development has been going of for a while now on WindowMaker Development Resumes, Has First Release Since 2006 · · Score: 1

    I agree. I also tend to move back to WindowMaker. It just feels right.