Skip to content

Commit 0e6fb34

Browse files
committed
Add new "cpu_percentage_format" & "gpu_percentage_format" option
1 parent befc5d5 commit 0e6fb34

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ Here are all available options with their default values:
9898
@cpu_medium_bg_color "#[bg=yellow]"
9999
@cpu_high_bg_color "#[bg=red]"
100100
101+
@cpu_percentage_format "%3.1f%%" # printf format
101102
```
102103

103104
Same options are valid with `@gpu`
@@ -108,6 +109,7 @@ You can can customize each one of these options in your `.tmux.conf`, for exampl
108109

109110
```shell
110111
set -g @cpu_low_fg_color "#[fg=#00ff00]"
112+
set -g @cpu_percentage_format "%5.1f%%" # Add left padding
111113
```
112114

113115
Don't forget to reload tmux environment (`$ tmux source-file ~/.tmux.conf`)

scripts/cpu_percentage.sh

+9-6
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,32 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
source "$CURRENT_DIR/helpers.sh"
66

7+
cpu_percentage_format="%3.1f%%"
8+
79
print_cpu_percentage() {
10+
cpu_percentage_format=$(get_tmux_option "@cpu_percentage_format" "$cpu_percentage_format")
811

912
if command_exists "iostat"; then
1013

1114
if is_linux_iostat; then
12-
iostat -c 1 2 | sed '/^\s*$/d' | tail -n 1 | awk '{usage=100-$NF} END {printf("%3.1f%%", usage)}' | sed 's/,/./'
15+
iostat -c 1 2 | sed '/^\s*$/d' | tail -n 1 | awk -v format="$cpu_percentage_format" '{usage=100-$NF} END {printf(format, usage)}' | sed 's/,/./'
1316
elif is_osx; then
14-
iostat -c 2 disk0 | sed '/^\s*$/d' | tail -n 1 | awk '{usage=100-$6} END {printf("%3.1f%%", usage)}' | sed 's/,/./'
17+
iostat -c 2 disk0 | sed '/^\s*$/d' | tail -n 1 | awk -v format="$cpu_percentage_format" '{usage=100-$6} END {printf(format, usage)}' | sed 's/,/./'
1518
elif is_freebsd || is_openbsd; then
16-
iostat -c 2 | sed '/^\s*$/d' | tail -n 1 | awk '{usage=100-$NF} END {printf("%3.1f%%", usage)}' | sed 's/,/./'
19+
iostat -c 2 | sed '/^\s*$/d' | tail -n 1 | awk -v format="$cpu_percentage_format" '{usage=100-$NF} END {printf(format, usage)}' | sed 's/,/./'
1720
else
1821
echo "Unknown iostat version please create an issue"
1922
fi
2023
elif command_exists "sar"; then
21-
sar -u 1 1 | sed '/^\s*$/d' | tail -n 1 | awk '{usage=100-$NF} END {printf("%3.1f%%", usage)}' | sed 's/,/./'
24+
sar -u 1 1 | sed '/^\s*$/d' | tail -n 1 | awk -v format="$cpu_percentage_format" '{usage=100-$NF} END {printf(format, usage)}' | sed 's/,/./'
2225
else
2326
if is_cygwin; then
2427
usage="$(WMIC cpu get LoadPercentage | grep -Eo '^[0-9]+')"
25-
printf "%3.1f%%" $usage
28+
printf "$cpu_percentage_format" "$usage"
2629
else
2730
load=`ps -aux | awk '{print $3}' | tail -n+2 | awk '{s+=$1} END {print s}'`
2831
cpus=$(cpus_number)
29-
echo "$load $cpus" | awk '{printf "%3.1f%%", $1/$2}'
32+
echo "$load $cpus" | awk -v format="$cpu_percentage_format" '{printf format, $1/$2}'
3033
fi
3134
fi
3235
}

scripts/gpu_percentage.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
source "$CURRENT_DIR/helpers.sh"
66

7+
gpu_percentage_format="%3.1f%%"
8+
79
print_gpu_percentage() {
10+
gpu_percentage_format=$(get_tmux_option "@gpu_percentage_format" "$gpu_percentage_format")
11+
812
if command_exists "nvidia-smi"; then
913
loads=$(nvidia-smi)
1014
elif command_exists "cuda-smi"; then
@@ -16,7 +20,7 @@ print_gpu_percentage() {
1620
loads=$(echo "$loads" | sed -nr 's/.*\s([0-9]+)%.*/\1/p')
1721
gpus=$(echo "$loads" | wc -l)
1822
load=$(echo "$loads" | awk '{count+=$1} END {print count}')
19-
echo "$load $gpus" | awk '{printf "%3.0f%%", $1/$2}'
23+
echo "$load $gpus" | awk -v format="$gpu_percentage_format" '{printf format, $1/$2}'
2024
}
2125

2226
main() {

0 commit comments

Comments
 (0)