Talk:Theme Management API

From WebOS Internals
Revision as of 04:52, 31 January 2010 by PuffTheMagic (talk | contribs)
Jump to navigation Jump to search

The original idea is a bit lacking with regards to file path restrictions. If we are going to create a legit Theme API, we should do it right and start off with an easy to read and create config file. Let's discuss what this should look like

Theme API Config File

egaudet

launcherIcons:
{
  appid: { icon = relative/path/to/icon };
  appid: { icon = relative/path/to/icon };
};

PuffTheMagic Old

launcherIcons:
{
  com.palm.package1 = relative/path/to/icon1;
  com.palm.package2 = relative/path/to/icon2;
};

PuffTheMagic New

applications:
{
  com.palm.package1:
  {
    launcherIcon = relative/path/to/icon1;
  }
  com.palm.package12
  {
    launcherIcon = relative/path/to/icon2;
  }
};

zsoc

HOW DID THIS GET HERE I AM NOT GOOD WITH COMPUTER