diff --git a/docs/glances-doc.rst b/docs/glances-doc.rst index b4154ed1..5724b977 100644 --- a/docs/glances-doc.rst +++ b/docs/glances-doc.rst @@ -146,6 +146,8 @@ The following commands (key pressed) are supported while in Glances: Delete finished warning and critical log messages ``y`` Show/hide hddtemp stats (only available with -y flag) +``Z`` + Show/hide processes list(for low CPU consumption) ``1`` Switch between global CPU and per-CPU stats diff --git a/glances/glances.py b/glances/glances.py index b9b9e3c9..5e7d8037 100644 --- a/glances/glances.py +++ b/glances/glances.py @@ -3987,6 +3987,7 @@ class glancesScreen: [_("h"), _("Show/hide this help screen")], [_("t"), _("View network I/O as combination")], [_("u"), _("View cumulative network I/O")], + [_("z"), _("Show/hide processes list (low CPU usage)")], [_("q"), _("Quit (Esc and Ctrl-C also work)")]] key_table_x = self.help_x + 38 key_table_y = limits_table_y + 1