tmo-monitor icon indicating copy to clipboard operation
tmo-monitor copied to clipboard

Format uptime output to Day:Hours:Minute:seconds, similar to the GUI

Open SteveEbey73742 opened this issue 2 years ago • 0 comments

day = uptime // (24 * 3600) uptime = uptime % (24 * 3600) hour = uptime // 3600 uptime %= 3600 minutes = uptime // 60 uptime %= 60 seconds = uptime

Not sure where to insert this, without possibly breaking stuff.

SteveEbey73742 avatar May 17 '22 22:05 SteveEbey73742