diff options
| -rw-r--r-- | lib/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/index.js b/lib/index.js index d5d9668..e8d0019 100644 --- a/lib/index.js +++ b/lib/index.js @@ -6,7 +6,7 @@ const internals = { kFieldSeparator: '\n', kKeyValueSeparator: '=', kBlockSeparator: '\n\n', - statusCommand: 'systemctl show --no-page -p Id -p ActiveState', + statusCommand: 'systemctl show --no-page -p Description -p ActiveState', formatStatusOutput(systemctlText) { @@ -29,7 +29,7 @@ const internals = { return { ...statusObject, - [service.Id]: service.ActiveState === internals.kActiveIndicator + [service.Description]: service.ActiveState === internals.kActiveIndicator } }, {}); }, |