Add utils.sh

This commit is contained in:
Abhishek Keshri 2022-08-09 06:28:34 +05:30
parent ddb78e00d4
commit 446e4d8a6c
No known key found for this signature in database
GPG key ID: 87ABE188E6B98D1C

25
scripts/utils.sh Normal file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env bash
get_tmux_option() {
local option=$1
local default_value=$2
local option_value=$(tmux show-option -gqv "$option")
if [ -z "$option_value" ]; then
echo $default_value
else
echo $option_value
fi
}
# normalize the percentage string to always have a length of 5
normalize_percent_len() {
# the max length that the percent can reach, which happens for a two digit number with a decimal house: "99.9%"
max_len=5
percent_len=${#1}
let diff_len=$max_len-$percent_len
# if the diff_len is even, left will have 1 more space than right
let left_spaces=($diff_len+1)/2
let right_spaces=($diff_len)/2
printf "%${left_spaces}s%s%${right_spaces}s\n" "" $1 ""
}