View Single Post
nicorumiz's Avatar
Posts: 96 | Thanked: 16 times | Joined on Jan 2010 @ Denver, CO -> Italy
#85
Originally Posted by rantom View Post
Well if I understood you correctly you want to make custom folders to the Application Menu without ApMeFo? Sure, that is possible and that is how I've done, it was mentioned on my previous post. See here:

Post #107 on "Making folders and managing icons".
Yes,

I am managing my icons manually right now. I was changing the program mymenu manually at the beginning and your post was really helpful because nokia replace my phone (I start over since took 1 month and PR1.2 was released).

Here how i have did hildon.menu in order to have few icons and after some folders (maybe can be helpful )

Code:
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
 "http://www.freedesktop.org/standards/menu-spec/menu-1.0.dtd">

<Menu>

  <Name>Main</Name>

  <!-- Search only in the hildon directory. -->
  <AppDir>/usr/share/applications/hildon</AppDir>
  <AppDir>/home/user/.local/share/applications/hildon</AppDir>
  <DirectoryDir>/usr/share/applications/hildon</DirectoryDir>
  <DirectoryDir>/home/user/.local/share/applications/hildon</DirectoryDir>

  
   <OnlyUnallocated/>
  <Include>
    <Filename>browser.desktop</Filename>
    <Filename>mediaplayer.desktop</Filename>
    <Filename>calendar.desktop</Filename>
    <Filename>image-viewer.desktop</Filename>
    <Filename>osso-addressbook.desktop</Filename>
    <Filename>rtcom-call-ui.desktop</Filename>
    <Filename>nokia-maps.desktop</Filename>
    <Filename>camera-ui.desktop</Filename>
    <Filename>modest.desktop</Filename>
    <Filename>rtcom-messaging-ui.desktop</Filename>
  </Include>
  
  <MergeDir>submenus</MergeDir>
  
  
   <Layout>
    <Filename>browser.desktop</Filename>
    <Filename>mediaplayer.desktop</Filename>
    <Filename>calendar.desktop</Filename>
    <Filename>image-viewer.desktop</Filename>
    <Filename>osso-addressbook.desktop</Filename>
    <Filename>rtcom-call-ui.desktop</Filename>
    <Filename>nokia-maps.desktop</Filename>
    <Filename>camera-ui.desktop</Filename>
    <Filename>modest.desktop</Filename>
    <Filename>rtcom-messaging-ui.desktop</Filename>
    <Merge type="all"/>
  </Layout>

  </Menu>
I still have some issue in my menu "More", is showing icons that are already in the main menu, I have to find out what is going on.

Nico