PDAStatus plugin is configurated through config.xml file. Most possible options are available at Settings dialog, but some things can be done by hands only.
Config.xml itself is simple XML file with numerouse “item” nodes, each such “item” is status icon of some type.
— Almost any status opens some application at tap. This application and parameters can be changed by editing “run” and “args” parameters, for example
<item type="Battery" caption="Battery status" index="2" visible="1">.
<params run="\Windows\ctlpnl.exe" args="cplmain.cpl,3" />.
</item>.
In this example “battery” status at tap runs “\Windows\ctlpnl.exe” with “cplmain.cpl,3″ argument, which mean standard Windows battery manager. You can change app and parameters as you wish.
— You can select kb/mb/tb etc. for ram, storage & memory card volume couting. Each “volume” status has “kpow” and “post” parameters:
<item type="StorageCard" caption="SD-card status" index="10" visible="1">.
<params kpow="2" post="mb"/>.
</item>.
In this example StorageCard is counted at megabytes (pow 1 is kbytes, 2 – mbytes, 3 – gbytes etc.), “post” parameters simply sets post-string, you can specify this parameter in your native language or set fulllength “megabytes” or maybe set it to empty string — as it is comfortable for you.
— There is possibility to add few storage or memory card icons. To do that you can simply copy-paste existing “Storage” or “StorageCard” description, give it unique “index” parameter and set storage/card root directory — simply add “root” parameter as in following example:
<item type="StorageCard" caption="SD-card status" index="11" visible="1">.
<params kpow="3" post="gb" root="\MyMemoryCardRoot"/>.
</item>.