index.html: periodically update system stats

This commit is contained in:
Will Greenberg
2024-01-05 10:55:16 -08:00
parent fe0e84ba18
commit c3d6227243

View File

@@ -5,7 +5,9 @@
<script src="js/main.js"></script>
<script>
window.onload = function() {
populateDivs();
setInterval(function() {
populateDivs();
}, 1000);
}
</script>
</head>