added temperatures to the tool, and fixed a bug with multicommand not removing bad commands if they were adjacent to each other in the list

This commit is contained in:
UpstreamData
2022-01-05 15:33:56 -07:00
parent e77cbc5415
commit 1148946a29
6 changed files with 42 additions and 44 deletions

View File

@@ -24,12 +24,12 @@ layout = [
])],
[sg.Table(
values=[],
headings=["IP", "Hostname", "Hashrate", "Current User", "Wattage"],
headings=["IP", "Hostname", "Hashrate", "Temperature", "Current User", "Wattage"],
auto_size_columns=False,
max_col_width=15,
justification="center",
key="ip_table",
col_widths=[14, 14, 14, 26, 7],
col_widths=[12, 12, 12, 10, 22, 7],
background_color="white",
text_color="black",
size=(105, 27),