From a6e0a450d83458865964ebbf248a36c38d4050ce Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Thu, 23 Sep 2021 17:39:23 +0200 Subject: [PATCH] updated website style --- docs/audio.html | 322 +-- docs/battery.html | 432 ++-- docs/bluetooth.html | 262 +- docs/changes.html | 400 +-- docs/contributors.html | 84 +- docs/copyright.html | 102 +- docs/cpu.html | 1014 ++++---- docs/docker.html | 2550 +++++++++---------- docs/filesystem.html | 1514 +++++------ docs/general.html | 474 ++-- docs/gettingstarted.html | 94 +- docs/graphics.html | 1062 ++++---- docs/history.html | 4790 ++++++++++++++++++----------------- docs/index.html | 332 +-- docs/issues.html | 82 +- docs/memory.html | 614 ++--- docs/network.html | 1188 ++++----- docs/os.html | 1290 +++++----- docs/printer.html | 282 ++- docs/processes.html | 1116 ++++---- docs/security.html | 282 ++- docs/statsfunctions.html | 100 +- docs/styles.css | 17 +- docs/styles.css.map | 2 +- docs/styles.scss | 8 +- docs/system.html | 870 +++---- docs/tests.html | 64 +- docs/trademarks.html | 96 +- docs/usb.html | 302 +-- docs/v4/battery.html | 412 +-- docs/v4/contributors.html | 80 +- docs/v4/copyright.html | 68 +- docs/v4/cpu.html | 934 +++---- docs/v4/docker.html | 2010 +++++++-------- docs/v4/filesystem.html | 1354 +++++----- docs/v4/general.html | 410 +-- docs/v4/gettingstarted.html | 98 +- docs/v4/graphics.html | 882 +++---- docs/v4/history.html | 4146 +++++++++++++++--------------- docs/v4/index.html | 276 +- docs/v4/issues.html | 82 +- docs/v4/memory.html | 594 ++--- docs/v4/network.html | 1188 ++++----- docs/v4/os.html | 1190 ++++----- docs/v4/processes.html | 1116 ++++---- docs/v4/security.html | 282 ++- docs/v4/statsfunctions.html | 100 +- docs/v4/styles.css | 13 +- docs/v4/styles.css.map | 2 +- docs/v4/styles.scss | 8 +- docs/v4/system.html | 678 ++--- docs/v4/trademarks.html | 82 +- docs/v4/vbox.html | 810 +++--- docs/v4/wifi.html | 302 +-- docs/vbox.html | 810 +++--- docs/wifi.html | 778 +++--- 56 files changed, 19285 insertions(+), 19165 deletions(-) diff --git a/docs/audio.html b/docs/audio.html index 6e99412..b7ed01d 100644 --- a/docs/audio.html +++ b/docs/audio.html @@ -38,159 +38,160 @@ -
-
- -
-
-
-
Audio
-
-

In this section you will learn how to get information about detected audio devices or interfaces. Results might differ on different platforms as not everything is available/detectable on each platform:

-

For function reference and examples we assume, that we imported systeminformation as follows:

-
const si = require('systeminformation');
-

Detected Audio Devices

-

All functions in this section return a promise or can be called with a callback function (parameter cb in the function reference)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
FunctionResult objectLinuxBSDMacWinSunComments
si.audio(cb)[{...}]XXXaudio informatiom
[0].idXXXinternal ID
[0].nameXXXaudio name
[0].manufacturerXXXmanufacturer
[0].revisionXrevision
[0].driverXdriver
[0].defaultXis default
[0].channelXXchannel e.g. Build-In, HDMI, USB, ...
[0].typeXXXtype e.g. Speaker
[0].inXis input channel
[0].outXis output channel
[0].statusXXstatus
-
Example
-
const si = require('systeminformation');
+  
+
+
+ +
+
+
+
Audio
+
+

In this section you will learn how to get information about detected audio devices or interfaces. Results might differ on different platforms as not everything is available/detectable on each platform:

+

For function reference and examples we assume, that we imported systeminformation as follows:

+
const si = require('systeminformation');
+

Detected Audio Devices

+

All functions in this section return a promise or can be called with a callback function (parameter cb in the function reference)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -
FunctionResult objectLinuxBSDMacWinSunComments
si.audio(cb)[{...}]XXXaudio informatiom
[0].idXXXinternal ID
[0].nameXXXaudio name
[0].manufacturerXXXmanufacturer
[0].revisionXrevision
[0].driverXdriver
[0].defaultXis default
[0].channelXXchannel e.g. Build-In, HDMI, USB, ...
[0].typeXXXtype e.g. Speaker
[0].inXis input channel
[0].outXis output channel
[0].statusXXstatus
+
Example
+
const si = require('systeminformation');
 si.audio().then(data => console.log(data));
 [
@@ -221,17 +222,18 @@ si.audio().then(data => console.log(data));
status: 'online' } ] -
+
+
- - +
-