rename JarvisControl to SystemControl

This commit is contained in:
lxsang
2021-01-12 14:58:49 +01:00
parent 8aff7831a1
commit a9c92fcff2
23 changed files with 14158 additions and 251 deletions

View File

@ -0,0 +1,17 @@
# JarvisControl
This is an example project, generated by AntOS Development Kit
## Howto
Use the CodePad command palette to access to the SDK functionalities:
1. Create new project
2. Init the project from the current folder located in side bar
3. Build and run the project
4. Release the project in zip package
## Set up build target
Open the `project.json` file from the current project tree and add/remove
build target entries. Save the file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,21 @@
{
"pkgname": "SystemMonitor",
"app":"SystemMonitor",
"name":"Jarvis monitoring",
"services": [
"SysmondService"
],
"description":"System monitoring",
"info":{
"author": "",
"email": ""
},
"dependencies": [
"Antunnel@0.1.8-a"
],
"version":"0.1.4-a",
"category":"Other",
"iconclass":"fa fa-android",
"mimes":["none"],
"locale": {}
}

View File

@ -0,0 +1,33 @@
<afx-app-window apptitle="System monitoring" width="700" height="450" data-id="SystemControl">
<afx-vbox >
<afx-hbox>
<afx-vbox>
<div data-height="5"></div>
<div data-id="cpu-text" data-height="22" class = "epoch category10 legend"></div>
<div data-id="cpu-area" class="epoch category10"></div>
<div data-id="memory-text" data-height="22" class = "epoch category10 legend"></div>
<div data-id="memory-area" class="epoch category10"></div>
<div data-id="network-text" data-height="22" class = "epoch category10 legend"></div>
<div data-id="network-area" class="epoch category10"></div>
<div data-height="5"></div>
</afx-vbox>
<afx-vbox data-width="300">
<div data-height="5"></div>
<div data-id="temp-text" data-height="22" class = "epoch category10 legend"></div>
<div data-id="temp-area" class="epoch category10"></div>
<div data-id="battery-text" data-height="22" class = "epoch category10 legend"></div>
<div data-id="battery-area" class="epoch category10"></div>
<afx-label data-id="disk-text" data-height="22" text="__(Disk:)"></afx-label>
<div data-id="disk-area" class="epoch gauge-tiny" ></div>
<div data-height="5"></div>
</afx-vbox>
</afx-hbox>
</afx-vbox>
</afx-app-window>