aboutsummaryrefslogtreecommitdiff
path: root/segments/load.sh
blob: 7480d96f2e9b1045ce3e800ab751ea1e57cd93eb (plain)
1
2
3
4
5
6
# Print the average load.

run_segment() {
	uptime | cut -d "," -f 3- | cut -d ":" -f2 | sed -e "s/^[ \t]*//"
	exit 0
}