dwmbar/modules/process_count

15 lines
156 B
Text
Raw Normal View History

2021-10-21 12:51:25 +00:00
#!/bin/bash
# Prints out your process count
PREFIX=' '
get_proc_count()
{
PROC_COUNT=$(ps -Al | wc -l)
echo "$PREFIX$PROC_COUNT"
}
get_proc_count