tmux-power
tmux-power copied to clipboard
[Feature] Show load average in tmux status bar
Hi, thanks for your awesome Tmux plugin.
I would like to show load average in me Tmux status bar via tmux-power plugin. Please, could you add a option to display it ?
The string to display Load average can be defined via simple shell (here with Bash) command :
uptime | rev | cut -d":" -f1 | rev | sed s/,//g => 0.35 0.64 0.75
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I had display of load average for tmux-power in tmux-power.tmux :
# tmux_set status-right "$RS"
# Add segment for load average
loadavg="#(uptime | rev | cut -d":" -f1 | rev | sed s/,//g)"
tmux_set status-right "#[fg=$TC,bg=$G05]Load: ${loadavg} $RS"
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.