Add system-info Linux systemd user unit

Update the `system-info` directory with the addition of a `systemd`
service file and an new Linux script to display current CPU temperature
and core/thread utilization. Update `.conduit.yaml` with addition
`apt` dependencies `sysstat` and `jq`. Update the install and remove
scripts to setup and tear down the `systemd` user unit. Lastly, decrease
the `tmux` status line update interval from 5 to 2 seconds.
This commit is contained in:
2021-02-17 00:15:17 +00:00
parent d96a1b7438
commit 21a88edfaa
6 changed files with 42 additions and 1 deletions

View File

@@ -3,4 +3,7 @@
if [ `uname` = Darwin ]; then
launchctl unload ~/Library/LaunchAgents/system-info.plist
rm ~/Library/LaunchAgents/system-info.plist
else
systemctl --user stop system-info
systemctl --user disable system-info
fi