Add process owners report to motd
[khome.git] / home / lib / login_functions.sh
index 293e7b4..6b01d49 100644 (file)
@@ -376,6 +376,7 @@ bar_gauge() {
     awk "$@" '
         BEGIN {
             # CLI options
+            width    = width    ? width    : 80
             ch_left  = ch_left  ? ch_left  : "["
             ch_right = ch_right ? ch_right : "]"
             ch_blank = ch_blank ? ch_blank : "-"
@@ -446,7 +447,6 @@ indent() {
 }
 
 motd() {
-    local -r bar_width='60'
     local -r indent_unit='    '
 
     uname -srvmo
@@ -467,7 +467,7 @@ motd() {
         df ~ | awk 'NR == 2 {print $3, $3 + $4, "disk"}'
         motd_batt
     ) \
-    | bar_gauge -v width="$bar_width" -v pct=1 \
+    | bar_gauge -v width=60 -v pct=1 \
     | column -t \
     | indent "$indent_unit"
 
@@ -549,6 +549,26 @@ motd() {
 
     echo
 
+    echo 'Process owners'
+    ps -eo user \
+    | awk '
+        NR > 1 {
+            count_by_user[$1]++
+            total++
+        }
+
+        END {
+            for (user in count_by_user)
+                print count_by_user[user], total, user
+        }
+        ' \
+    | sort -n -k 1 -r \
+    | bar_gauge -v num=1 -v ch_left=' ' -v ch_right=' ' -v ch_blank=' ' \
+    | column -t \
+    | indent "${indent_unit}"
+
+    echo
+
     echo 'Loggers'
     awk '
         {
This page took 0.038275 seconds and 4 git commands to generate.