Top left card is a custom:button-card which switches the theme just by clicking on the button (behind the scenes it’s using an input_select combined with an automation for frontend.set_theme).
Underneath is a count of certain domains like total sensors, automations, scripts, etc. Besides just displaying statistics, these have “secret” actions associated with them - for example holding on the scripts icon will perform the script.reload service, same for automations, etc.
Then under that is a glance card with some stats. These also have tap_action and hold_actions on them. Holding on the database icon will call recorder.purge service keeping the last 3 days. Tapping on the log icon navigates to /dev-info/ page, and holding on it performs system_log.clear service. hold_action for Uptime icon performs homeassistant.restart service, and tapping on version icon navigates to /hassio/dashboard so icon doubles as a shortcut to the update screen.
My other system monitoring stuff like processor and disk use is in a standard entities card for now, i plan to overhaul that soon though.
Did you do anything specific to get the CPU Temperature or how did you add it?
Would it be possible to get the GPU Temperature? I was just wondering if that could be interesting with this new stream function or is this still being processed by the CPU?
I just used the command line sensor build into HA, here’s my YAML for the sensor:
- platform: command_line
name: "RPi CPU Temperature"
command: "cat /sys/class/thermal/thermal_zone0/temp"
value_template: '{{ value | multiply(0.001) | round(2) }}'
If you can work out what command you need to get the GPU temp then you should be able to add it. However it could be that the GPU is a part of the CPU, as in they are all a single chip, and if that’s the case the temps will be pretty similar.
can you please show us yor config for system-monitor.
how to get docker listing over here.
and one more and last thing how to get only 2 digit for cpu load as i am getting some 6 digit after decimal.
The clock card is courtesy of Palm Springs Theme but it doesn’t always update on this view (which is the first one) although it does seem to on another test view. I posted the question but no one has replied.