mirror of
https://github.com/theniceboy/.config.git
synced 2026-01-28 10:57:12 +08:00
6 lines
120 B
Bash
Executable file
6 lines
120 B
Bash
Executable file
# Print the average load.
|
|
|
|
run_segment() {
|
|
uptime | cut -d "," -f 3- | cut -d ":" -f2 | sed -e "s/^[ \t]*//"
|
|
exit 0
|
|
}
|