We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b5557 commit d7fd657Copy full SHA for d7fd657
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "sguala",
3
"productName": "sguala",
4
- "version": "2.0.3",
+ "version": "2.0.4",
5
"description": "My Electron application description",
6
"main": ".webpack/main",
7
"scripts": {
src/main/sshRemote.ts
@@ -844,6 +844,18 @@ export class SshClient {
844
const idled = Idle - PrevIdle
845
846
const CPU_Percentage = (totald - idled) / totald
847
+
848
+ this.prev = {
849
+ user: user,
850
+ nice: nice,
851
+ system: system,
852
+ idle: idle,
853
+ iowait: iowait,
854
+ irq: irq,
855
+ softirq: softirq,
856
+ steal: steal,
857
+ };
858
859
return CPU_Percentage;
860
}
861
0 commit comments