Help for this page

Select Code to Download


  1. or download this
    my @cat = qw/ Audio Graphics Network Settings System Utility /; # in y
    +our desired order
    my $regex = join "|", @cat;
    my @files = glob "/usr/share/applications/*.desktop"; # as before
    
  2. or download this
    for my $category ( @cat ) {
        next unless exists $data{ $category };
        print "Submenu = \"$category\" {\n";
            . . . . .