mirror of
https://github.com/pgrondek/config.git
synced 2024-11-29 23:07:46 +00:00
9 lines
299 B
Bash
Executable File
9 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
utilisation=$(mpstat | awk '$12 ~ /[0-9.]+/ { print 100 - $12"%" }')
|
|
temperature_path=/sys/devices/platform/coretemp.0/hwmon/hwmon*/temp1_input
|
|
load="↑ $(awk '{print $1}' /proc/loadavg)"
|
|
temperature=$(($(cat $temperature_path)/1000))°C
|
|
|
|
echo $utilisation $load $temperature
|