avd/mod/cpu
Narvin Singh 7d21134068 Feat: Rename module directory to mod
This is a breaking change so this will be a new major version.
2020-12-31 13:50:52 -05:00

16 lines
328 B
Bash
Executable File

#!/bin/bash
mod_cpu () {
# Customizable configuration constants
local -r DEFAULT_PRE=' '
local -r DEFAULT_SUF=''
local -r pre="${1-${DEFAULT_PRE}}"
local -r suf="${2-${DEFAULT_SUF}}"
printf '%b' "${pre}"
ps --no-headers -A -o %cpu | awk '{cpu = cpu + $1} END {printf "%3.0f", cpu}'
printf '%b' "${suf}"
}