Formatting and lint fixes on main script

This commit is contained in:
Abhishek Keshri 2022-08-09 06:56:34 +05:30
parent 35888ad255
commit f0c4730ace
No known key found for this signature in database
GPG key ID: 87ABE188E6B98D1C

View file

@ -2,306 +2,312 @@
# setting the locale, some users have issues with different locales, this forces the correct one # setting the locale, some users have issues with different locales, this forces the correct one
export LC_ALL=en_US.UTF-8 export LC_ALL=en_US.UTF-8
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source $current_dir/utils.sh source "$current_dir"/utils.sh
main() main() {
{ datafile=/tmp/.tmux2k-data
datafile=/tmp/.tmux2k-data
# set configuration option variables # set configuration option variables
show_fahrenheit=$(get_tmux_option "@tmux2k-show-fahrenheit" true) show_fahrenheit=$(get_tmux_option "@tmux2k-show-fahrenheit" true)
show_location=$(get_tmux_option "@tmux2k-show-location" true) show_location=$(get_tmux_option "@tmux2k-show-location" true)
fixed_location=$(get_tmux_option "@tmux2k-fixed-location") fixed_location=$(get_tmux_option "@tmux2k-fixed-location")
show_powerline=$(get_tmux_option "@tmux2k-show-powerline" false) show_powerline=$(get_tmux_option "@tmux2k-show-powerline" false)
show_flags=$(get_tmux_option "@tmux2k-show-flags" false) show_flags=$(get_tmux_option "@tmux2k-show-flags" false)
show_left_icon=$(get_tmux_option "@tmux2k-show-left-icon" smiley) show_left_icon=$(get_tmux_option "@tmux2k-show-left-icon" smiley)
show_left_icon_padding=$(get_tmux_option "@tmux2k-left-icon-padding" 1) show_left_icon_padding=$(get_tmux_option "@tmux2k-left-icon-padding" 1)
show_military=$(get_tmux_option "@tmux2k-military-time" false) show_military=$(get_tmux_option "@tmux2k-military-time" false)
show_timezone=$(get_tmux_option "@tmux2k-show-timezone" true) show_timezone=$(get_tmux_option "@tmux2k-show-timezone" true)
show_left_sep=$(get_tmux_option "@tmux2k-show-left-sep") show_left_sep=$(get_tmux_option "@tmux2k-show-left-sep")
show_right_sep=$(get_tmux_option "@tmux2k-show-right-sep") show_right_sep=$(get_tmux_option "@tmux2k-show-right-sep")
show_border_contrast=$(get_tmux_option "@tmux2k-border-contrast" false) show_border_contrast=$(get_tmux_option "@tmux2k-border-contrast" false)
show_day_month=$(get_tmux_option "@tmux2k-day-month" false) show_day_month=$(get_tmux_option "@tmux2k-day-month" false)
show_refresh=$(get_tmux_option "@tmux2k-refresh-rate" 5) show_refresh=$(get_tmux_option "@tmux2k-refresh-rate" 5)
IFS=' ' read -r -a plugins <<< $(get_tmux_option "@tmux2k-plugins" "battery network weather") IFS=' ' read -r -a plugins <<<"$(get_tmux_option '@tmux2k-plugins' 'battery network weather')"
IFS=' ' read -r -a lefts <<< $(get_tmux_option "@tmux2k-lefts" "cpu-usage ram-usage") IFS=' ' read -r -a lefts <<<"$(get_tmux_option '@tmux2k-lefts' 'cpu-usage ram-usage')"
# tmux2k Color Pallette # tmux2k Color Pallette
white='#f8f8f2' white='#f8f8f2'
black='#0a0a0f', black='#0a0a0f',
gray='#44475a' gray='#44475a'
dark_gray='#282a36' red='#ed001f',
red='#ed001f', green='#11d116',
green='#11d116', yellow='#ffd21a',
yellow='#ffd21a', blue='#1688f0',
blue='#1688f0', purple='#9b16f3',
purple='#9b16f3', cyan='#11dddd',
cyan='#11dddd', orange='#ffb86c'
orange='#ffb86c' pink='#ff79c6'
pink='#ff79c6' light_purple='#bd93f9'
light_purple='#bd93f9' light_cyan='#8be9fd'
dark_purple='#6272a4' light_green='#50fa7b'
# cyan='#8be9fd' light_red='#ff5555'
# green='#50fa7b' light_yellow='#f1fa8c'
# red='#ff5555' dark_purple='#6272a4'
# yellow='#f1fa8c' dark_gray='#282a36'
# Handle left icon configuration # Handle left icon configuration
case $show_left_icon in case $show_left_icon in
smiley) smiley)
left_icon="☺";; left_icon="☺"
;;
session) session)
left_icon="#S";; left_icon="#S"
;;
window) window)
left_icon="#W";; left_icon="#W"
;;
*) *)
left_icon=$show_left_icon;; left_icon=$show_left_icon
esac ;;
esac
# Handle left icon padding # Handle left icon padding
padding="" padding=""
if [ "$show_left_icon_padding" -gt "0" ]; then if [ "$show_left_icon_padding" -gt "0" ]; then
padding="$(printf '%*s' $show_left_icon_padding)" padding="$(printf '%*s' $show_left_icon_padding)"
fi
left_icon="$left_icon$padding"
# Handle powerline option
if $show_powerline; then
right_sep="$show_right_sep"
left_sep="$show_left_sep"
fi
# start weather script in background
if [[ "${plugins[@]}" =~ "weather" ]]; then
$current_dir/sleep_weather.sh $show_fahrenheit $show_location $fixed_location &
fi
# Set timezone unless hidden by configuration
case $show_timezone in
false)
timezone="";;
true)
timezone="#(date +%Z)";;
esac
case $show_flags in
false)
flags=""
current_flags="";;
true)
flags="#{?window_flags,#[fg=${dark_purple}]#{window_flags},}"
current_flags="#{?window_flags,#[fg=${light_purple}]#{window_flags},}"
esac
# sets refresh interval to every 5 seconds
tmux set-option -g status-interval $show_refresh
# set the prefix + t time format
if $show_military; then
tmux set-option -g clock-mode-style 24
else
tmux set-option -g clock-mode-style 12
fi
# set length
tmux set-option -g status-left-length 100
tmux set-option -g status-right-length 100
# pane border styling
if $show_border_contrast; then
tmux set-option -g pane-active-border-style "fg=${blue}"
else
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
fi
tmux set-option -g pane-border-style "fg=${gray}"
# message styling
tmux set-option -g message-style "bg=${gray},fg=${blue}"
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"
# Status left
if $show_powerline; then
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}} ${left_icon} #[fg=${green},bg=${blue}]#{?client_prefix,#[fg=${yellow}}${left_sep}"
powerbg=${gray}
else
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon}"
fi
for left in "${lefts[@]}"; do
if [ $left = "git" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-git-colors" "green dark_gray")
script="#($current_dir/git.sh)"
fi
if [ $left = "battery" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-battery-colors" "pink dark_gray")
script="#($current_dir/battery.sh)"
fi
if [ $left = "gpu-usage" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-gpu-usage-colors" "pink dark_gray")
script="#($current_dir/gpu_usage.sh)"
fi
if [ $left = "cpu-usage" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-cpu-usage-colors" "blue dark_gray")
script="#($current_dir/cpu_info.sh)"
powerbg=${cyan}
fi
if [ $left = "ram-usage" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-ram-usage-colors" "cyan dark_gray")
script="#($current_dir/ram_info.sh)"
fi
if [ $left = "network" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-network-colors" "cyan dark_gray")
script="#($current_dir/network.sh)"
fi
if [ $left = "network-bandwidth" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-network-bandwidth-colors" "cyan dark_gray")
tmux set-option -g status-left 250
script="#($current_dir/network_bandwidth.sh)"
fi
if [ $left = "network-ping" ]; then
IFS=' ' read -r -a colors <<<$(get_tmux_option "@tmux2k-network-ping-colors" "cyan dark_gray")
script="#($current_dir/network_ping.sh)"
fi
if [ $left = "weather" ]; then
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while [ ! -f $datafile ]; do
sleep 0.01
done
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-weather-colors" "orange dark_gray")
script="#(cat $datafile)"
fi
if [ $left = "time" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-time-colors" "dark_purple dark_gray")
if $show_day_month && $show_military ; then # military time and dd/mm
script=" %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
script=" %a %m/%d %R ${timezone} "
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone} "
else
script=" %a %m/%d %I:%M %p ${timezone} "
fi
fi fi
left_icon="$left_icon$padding"
# Handle powerline option
if $show_powerline; then if $show_powerline; then
tmux set-option -ga status-left "#[fg=${!colors[1]},bg=${!colors[0]}] $script #[fg=${!colors[0]},bg=${powerbg},nobold,nounderscore,noitalics]${left_sep}" right_sep="$show_right_sep"
powerbg=${gray} left_sep="$show_left_sep"
# powerbg=${!colors[0]} fi
# start weather script in background
if [[ "${plugins[@]}" =~ "weather" ]]; then
"$current_dir"/sleep_weather.sh "$show_fahrenheit" "$show_location" "$fixed_location" &
fi
# Set timezone unless hidden by configuration
case $show_timezone in
false)
timezone=""
;;
true)
timezone="#(date +%Z)"
;;
esac
case $show_flags in
false)
flags=""
current_flags=""
;;
true)
flags="#{?window_flags,#[fg=${dark_purple}]#{window_flags},}"
current_flags="#{?window_flags,#[fg=${light_purple}]#{window_flags},}"
;;
esac
# sets refresh interval to every 5 seconds
tmux set-option -g status-interval "$show_refresh"
# set the prefix + t time format
if $show_military; then
tmux set-option -g clock-mode-style 24
else else
tmux set-option -ga status-left "#[fg=${!colors[1]},bg=${!colors[0]}] $script " tmux set-option -g clock-mode-style 12
fi
done
# Status middle
left_sep=""
# Set window list at centre
tmux set -g status-justify centre
# Status right
tmux set-option -g status-right ""
for plugin in "${plugins[@]}"; do
if [ $plugin = "git" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-git-colors" "green dark_gray")
script="#($current_dir/git.sh)"
fi fi
if [ $plugin = "battery" ]; then # set length
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-battery-colors" "pink dark_gray") tmux set-option -g status-left-length 100
script="#($current_dir/battery.sh)" tmux set-option -g status-right-length 100
# pane border styling
if $show_border_contrast; then
tmux set-option -g pane-active-border-style "fg=${blue}"
else
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
fi fi
tmux set-option -g pane-border-style "fg=${gray}"
if [ $plugin = "gpu-usage" ]; then # message styling
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-gpu-usage-colors" "pink dark_gray") tmux set-option -g message-style "bg=${gray},fg=${blue}"
script="#($current_dir/gpu_usage.sh)"
fi
if [ $plugin = "cpu-usage" ]; then # status bar
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-cpu-usage-colors" "orange dark_gray") tmux set-option -g status-style "bg=${gray},fg=${white}"
script="#($current_dir/cpu_info.sh)"
fi
if [ $plugin = "ram-usage" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-ram-usage-colors" "cyan dark_gray")
script="#($current_dir/ram_info.sh)"
fi
if [ $plugin = "network" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-network-colors" "cyan dark_gray")
script="#($current_dir/network.sh)"
fi
if [ $plugin = "network-bandwidth" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-network-bandwidth-colors" "cyan dark_gray")
tmux set-option -g status-right-length 250
script="#($current_dir/network_bandwidth.sh)"
fi
if [ $plugin = "network-ping" ]; then
IFS=' ' read -r -a colors <<<$(get_tmux_option "@tmux2k-network-ping-colors" "cyan dark_gray")
script="#($current_dir/network_ping.sh)"
fi
if [ $plugin = "weather" ]; then
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while [ ! -f $datafile ]; do
sleep 0.01
done
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-weather-colors" "orange dark_gray")
script="#(cat $datafile)"
fi
if [ $plugin = "time" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@tmux2k-time-colors" "yellow dark_gray")
if $show_day_month && $show_military ; then # military time and dd/mm
script=" %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
script=" %a %m/%d %R "
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone} "
else
script=" %a %m/%d %I:%M %p ${timezone} "
fi
fi
# Status left
if $show_powerline; then if $show_powerline; then
tmux set-option -ga status-right "#[fg=${!colors[0]},bg=${powerbg},nobold,nounderscore,noitalics]${right_sep}#[fg=${!colors[1]},bg=${!colors[0]}] $script " tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}} ${left_icon} #[fg=${green},bg=${blue}]#{?client_prefix,#[fg=${yellow}}${left_sep}"
powerbg=${!colors[0]} powerbg=${gray}
else else
tmux set-option -ga status-right "#[fg=${!colors[1]},bg=${!colors[0]}] $script " tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon}"
fi fi
done
# Window option for left in "${lefts[@]}"; do
if $show_powerline; then
tmux set-window-option -g window-status-current-format "#[fg=${gray},bg=${dark_purple}]${left_sep}#[fg=${white},bg=${dark_purple}] #I #W${current_flags} #[fg=${dark_purple},bg=${gray}]${left_sep}"
else
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W${current_flags} "
fi
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W${flags}" if [ "$left" = "git" ]; then
tmux set-window-option -g window-status-activity-style "bold" IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-git-colors' 'green dark_gray')"
tmux set-window-option -g window-status-bell-style "bold" script="#($current_dir/git.sh)"
fi
if [ "$left" = "battery" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-battery-colors' 'pink dark_gray')"
script="#($current_dir/battery.sh)"
fi
if [ "$left" = "gpu-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-gpu-usage-colors' 'pink dark_gray')"
script="#($current_dir/gpu_usage.sh)"
fi
if [ "$left" = "cpu-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-cpu-usage-colors' 'blue dark_gray')"
script="#($current_dir/cpu_info.sh)"
powerbg=${cyan}
fi
if [ "$left" = "ram-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-ram-usage-colors' 'cyan dark_gray')"
script="#($current_dir/ram_info.sh)"
fi
if [ "$left" = "network" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-colors' 'cyan dark_gray')"
script="#($current_dir/network.sh)"
fi
if [ "$left" = "network-bandwidth" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-bandwidth-colors' 'cyan dark_gray')"
tmux set-option -g status-left 250
script="#($current_dir/network_bandwidth.sh)"
fi
if [ "$left" = "network-ping" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-ping-colors' 'cyan dark_gray')"
script="#($current_dir/network_ping.sh)"
fi
if [ "$left" = "weather" ]; then
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while [ ! -f $datafile ]; do
sleep 0.01
done
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-weather-colors' 'orange dark_gray')"
script="#(cat $datafile)"
fi
if [ "$left" = "time" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-time-colors' 'dark_purple dark_gray')"
if $show_day_month && $show_military; then # military time and dd/mm
script=" %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
script=" %a %m/%d %R ${timezone} "
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone} "
else
script=" %a %m/%d %I:%M %p ${timezone} "
fi
fi
if $show_powerline; then
tmux set-option -ga status-left "#[fg=${!colors[1]},bg=${!colors[0]}] $script #[fg=${!colors[0]},bg=${powerbg},nobold,nounderscore,noitalics]${left_sep}"
powerbg=${gray}
# powerbg=${!colors[0]}
else
tmux set-option -ga status-left "#[fg=${!colors[1]},bg=${!colors[0]}] $script "
fi
done
# Status middle
left_sep=""
# Set window list at centre
tmux set -g status-justify centre
# Status right
tmux set-option -g status-right ""
for plugin in "${plugins[@]}"; do
if [ "$plugin" = "git" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-git-colors' 'green dark_gray')"
script="#($current_dir/git.sh)"
fi
if [ "$plugin" = "battery" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-battery-colors' 'pink dark_gray')"
script="#($current_dir/battery.sh)"
fi
if [ "$plugin" = "gpu-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-gpu-usage-colors' 'pink dark_gray')"
script="#($current_dir/gpu_usage.sh)"
fi
if [ "$plugin" = "cpu-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-cpu-usage-colors' 'orange dark_gray')"
script="#($current_dir/cpu_info.sh)"
fi
if [ "$plugin" = "ram-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-ram-usage-colors' 'cyan dark_gray')"
script="#($current_dir/ram_info.sh)"
fi
if [ "$plugin" = "network" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-colors' 'cyan dark_gray')"
script="#($current_dir/network.sh)"
fi
if [ "$plugin" = "network-bandwidth" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-bandwidth-colors' 'cyan dark_gray')"
tmux set-option -g status-right-length 250
script="#($current_dir/network_bandwidth.sh)"
fi
if [ "$plugin" = "network-ping" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-ping-colors' 'cyan dark_gray')"
script="#($current_dir/network_ping.sh)"
fi
if [ "$plugin" = "weather" ]; then
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while [ ! -f $datafile ]; do
sleep 0.01
done
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-weather-colors' 'orange dark_gray')"
script="#(cat $datafile)"
fi
if [ "$plugin" = "time" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-time-colors' 'yellow dark_gray')"
if $show_day_month && $show_military; then # military time and dd/mm
script=" %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
script=" %a %m/%d %R "
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone} "
else
script=" %a %m/%d %I:%M %p ${timezone} "
fi
fi
if $show_powerline; then
tmux set-option -ga status-right "#[fg=${!colors[0]},bg=${powerbg},nobold,nounderscore,noitalics]${right_sep}#[fg=${!colors[1]},bg=${!colors[0]}] $script "
powerbg=${!colors[0]}
else
tmux set-option -ga status-right "#[fg=${!colors[1]},bg=${!colors[0]}] $script "
fi
done
# Window option
if $show_powerline; then
tmux set-window-option -g window-status-current-format "#[fg=${gray},bg=${dark_purple}]${left_sep}#[fg=${white},bg=${dark_purple}] #I #W${current_flags} #[fg=${dark_purple},bg=${gray}]${left_sep}"
else
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W${current_flags} "
fi
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W${flags}"
tmux set-window-option -g window-status-activity-style "bold"
tmux set-window-option -g window-status-bell-style "bold"
} }
# run main function # run main function