diff --git a/files/system-monitor-graph@mount/desklet.js b/files/system-monitor-graph@mount/desklet.js index f42755a..b294713 100644 --- a/files/system-monitor-graph@mount/desklet.js +++ b/files/system-monitor-graph@mount/desklet.js @@ -18,7 +18,7 @@ const KIB_TO_B = 1024; // 1 KiB = 1,024 B const CPU_TEMP_MIN = 20; // Minimum CPU temperature const CPU_TEMP_MAX = 100; // Maximum CPU temperature -const CPU_FANSPEED_MAX = 4000; // CPU fan graph full-scale speed +const CPU_FANSPEED_MAX = 6000; // CPU fan graph full-scale speed const CPU_FAN_RETRY_MIN = 5; // Initial retry delay in seconds const CPU_FAN_RETRY_MAX = 300; // Maximum retry delay in seconds const CPU_FAN_RETRY_MULTIPLIER = 2; @@ -456,7 +456,12 @@ SystemMonitorGraph.prototype = { this.get_network_values(); // For network, we don't use the single 'value' variable as we have dual lines value = 0; // Not used for network type - text1 = _("Network"); + + if (this.network_interface) { + text1 = _("Network " + this.network_interface); + } else { + text1 = _("Network"); + } // Format speeds with appropriate units let down_speed_formatted = this.format_network_speed(this.net_down_speed);