Files
dotfiles/tmux/powerline/segments/load.sh
2019-01-12 18:22:02 +01:00

7 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
}