aboutsummaryrefslogtreecommitdiff
path: root/segments/uptime.sh
blob: 276cfbe75ef74086db19cf250acb05f9c524fb3b (plain)
1
2
3
4
5
6
# Prints the uptime.

run_segment() {
	uptime | grep -PZo "(?<=up )[^,]*"
	return 0
}