update uptime icon

This commit is contained in:
Hristo
2022-11-21 00:35:11 +02:00
parent 0f81bbe577
commit af47b5bacc

View File

@@ -58,7 +58,7 @@ def check_cpu_load():
def check_voltage(): def check_voltage():
try: try:
full_cmd = "vcgencmd measure_volts | cut -f2 -d= | sed 's/000//'" full_cmd = "vcgencmd measure_volts | cut -f2 -d= | sed 's/000//'"
voltage = subprocess.Popen(full_cmd, shell=True, stdout=subprocess.PIPE).communicate()[0] voltage = subprocess.Popen(full_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
voltage = voltage.strip()[:-1] voltage = voltage.strip()[:-1]
except Exception: except Exception:
voltage = 0 voltage = 0
@@ -176,7 +176,7 @@ def config_json(what_config):
data["name"] = hostname + " CPU Clock Speed" data["name"] = hostname + " CPU Clock Speed"
data["unit_of_measurement"] = "MHz" data["unit_of_measurement"] = "MHz"
elif what_config == "uptime_days": elif what_config == "uptime_days":
data["icon"] = "mdi:timer" data["icon"] = "mdi:calendar"
data["name"] = hostname + " Uptime" data["name"] = hostname + " Uptime"
data["unit_of_measurement"] = "days" data["unit_of_measurement"] = "days"
elif what_config == "wifi_signal": elif what_config == "wifi_signal":