tmux2k/scripts/tmux2k.sh

323 lines
12 KiB
Bash
Raw Normal View History

2022-08-09 06:28:34 +05:30
#!/usr/bin/env bash
# setting the locale, some users have issues with different locales, this forces the correct one
export LC_ALL=en_US.UTF-8
current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$current_dir"/utils.sh
main() {
datafile=/tmp/.tmux2k-data
# set configuration option variables
2022-08-13 15:14:18 +05:30
show_fahrenheit=$(get_tmux_option "@tmux2k-show-fahrenheit" false)
show_location=$(get_tmux_option "@tmux2k-show-location" false)
fixed_location=$(get_tmux_option "@tmux2k-fixed-location")
2022-08-13 15:14:18 +05:30
show_powerline=$(get_tmux_option "@tmux2k-show-powerline" true)
show_flags=$(get_tmux_option "@tmux2k-show-flags" true)
show_left_icon=$(get_tmux_option "@tmux2k-show-left-icon" rocket)
show_left_icon_padding=$(get_tmux_option "@tmux2k-left-icon-padding" 0)
show_military=$(get_tmux_option "@tmux2k-military-time" true)
show_timezone=$(get_tmux_option "@tmux2k-show-timezone" false)
show_left_sep=$(get_tmux_option "@tmux2k-show-left-sep")
show_right_sep=$(get_tmux_option "@tmux2k-show-right-sep")
2022-08-13 15:14:18 +05:30
show_border_contrast=$(get_tmux_option "@tmux2k-border-contrast" true)
show_day_month=$(get_tmux_option "@tmux2k-day-month" false)
show_refresh=$(get_tmux_option "@tmux2k-refresh-rate" 5)
2023-04-07 00:33:48 +05:30
IFS=' ' read -r -a rplugins <<<"$(get_tmux_option '@tmux2k-right-plugins' 'battery network time')"
2022-08-13 15:14:18 +05:30
IFS=' ' read -r -a lplugins <<<"$(get_tmux_option '@tmux2k-left-plugins' 'git cpu-usage ram-usage')"
# tmux2k Color Pallette
2022-10-12 18:10:52 +05:30
white='#d5d5da'
black='#0a0a0f',
2023-11-15 08:57:26 +05:30
gray='#15152a'
2022-10-12 18:10:52 +05:30
red='#ff001f',
2023-03-17 09:30:45 +05:30
green='#3dd50A',
yellow='#ffd21a',
blue='#1688f0',
2022-08-13 15:27:28 +05:30
purple='#BF58FF',
cyan='#11dddd',
orange='#ffb86c'
pink='#ff79c6'
light_purple='#bd93f9'
light_cyan='#8be9fd'
light_green='#50fa7b'
2022-10-12 18:10:52 +05:30
light_red='#ff0055'
light_yellow='#f1fa8c'
dark_gray='#282a36'
2022-10-12 18:10:52 +05:30
light_gray='#45455a'
# Handle left icon configuration
case $show_left_icon in
2022-08-13 15:14:18 +05:30
rocket)
left_icon=""
;;
2022-08-09 06:28:34 +05:30
session)
left_icon="#S"
;;
2022-08-09 06:28:34 +05:30
window)
left_icon="#W"
;;
2022-08-09 06:28:34 +05:30
*)
left_icon=$show_left_icon
;;
esac
# Handle left icon padding
padding=""
if [ "$show_left_icon_padding" -gt "0" ]; then
2023-03-29 14:52:27 +05:30
padding="$(printf '%*s' "$show_left_icon_padding")"
2022-08-09 06:28:34 +05:30
fi
left_icon="$left_icon$padding"
2022-08-09 06:28:34 +05:30
# Handle powerline option
2022-08-09 06:28:34 +05:30
if $show_powerline; then
right_sep="$show_right_sep"
left_sep="$show_left_sep"
2022-08-09 06:28:34 +05:30
fi
# start weather script in background
2022-08-13 14:42:46 +05:30
if [[ "${rplugins[@]}" =~ "weather" ]]; then
"$current_dir"/sleep_weather.sh "$show_fahrenheit" "$show_location" "$fixed_location" &
2022-08-09 06:28:34 +05:30
fi
# Set timezone unless hidden by configuration
case $show_timezone in
false)
timezone=""
;;
true)
timezone="#(date +%Z)"
;;
esac
2022-08-09 06:28:34 +05:30
case $show_flags in
false)
flags=""
current_flags=""
;;
true)
2022-10-12 18:11:20 +05:30
flags="#{?window_flags,#[fg=${light_purple}]#{window_flags},}"
current_flags="#{?window_flags,#[fg=${light_red}]#{window_flags},}"
;;
esac
2022-08-09 06:28:34 +05:30
# sets refresh interval to every 5 seconds
tmux set-option -g status-interval "$show_refresh"
2022-08-09 06:28:34 +05:30
# 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
2022-08-09 06:28:34 +05:30
fi
# set length
tmux set-option -g status-left-length 100
tmux set-option -g status-right-length 100
2022-08-09 06:28:34 +05:30
# pane border styling
if $show_border_contrast; then
tmux set-option -g pane-active-border-style "fg=${blue}"
else
2022-10-12 18:11:20 +05:30
tmux set-option -g pane-active-border-style "fg=${light_purple}"
2022-08-09 06:28:34 +05:30
fi
tmux set-option -g pane-border-style "fg=${gray}"
2022-08-09 06:28:34 +05:30
# message styling
tmux set-option -g message-style "bg=${gray},fg=${blue}"
2022-08-09 06:28:34 +05:30
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"
2022-08-09 06:28:34 +05:30
# Status left
if $show_powerline; then
2022-08-13 15:13:00 +05:30
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}} ${left_icon} #[fg=${green},bg=${green}]#{?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}"
2022-08-09 06:28:34 +05:30
fi
2022-08-13 14:34:21 +05:30
for lplugin in "${lplugins[@]}"; do
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "git" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-git-colors' 'green dark_gray')"
script="#($current_dir/git.sh)"
2022-08-13 15:13:00 +05:30
powerbg=${blue}
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "battery" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-battery-colors' 'pink dark_gray')"
script="#($current_dir/battery.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "gpu-usage" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-gpu-usage-colors' 'orange dark_gray')"
script="#($current_dir/gpu_usage.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "cpu-usage" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-cpu-usage-colors' 'blue dark_gray')"
script="#($current_dir/cpu_info.sh)"
2022-08-13 15:13:00 +05:30
powerbg=${yellow}
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "ram-usage" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-ram-usage-colors' 'yellow dark_gray')"
script="#($current_dir/ram_info.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "network" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-colors' 'purple dark_gray')"
script="#($current_dir/network.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "network-bandwidth" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-bandwidth-colors' 'purple dark_gray')"
tmux set-option -g status-left 250
script="#($current_dir/network_bandwidth.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "network-ping" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-ping-colors' 'purple dark_gray')"
script="#($current_dir/network_ping.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "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
2022-08-13 14:34:21 +05:30
if [ "$lplugin" = "time" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-time-colors' 'cyan dark_gray')"
if $show_day_month && $show_military; then # military time and dd/mm
2022-08-13 14:42:46 +05:30
script=" %a %d/%m %R ${timezone}"
elif $show_military; then # only military time
2022-08-13 15:28:59 +05:30
script=" %a %m/%d %R ${timezone}"
elif $show_day_month; then # only dd/mm
2022-08-13 14:42:46 +05:30
script=" %a %d/%m %I:%M %p ${timezone}"
else
2022-08-13 14:42:46 +05:30
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
2022-10-12 18:11:20 +05:30
left_win_sep=""
right_win_sep=""
# Set window list at centre
tmux set -g status-justify centre
2022-10-12 18:11:20 +05:30
# Window option
if $show_powerline; then
tmux set-window-option -g window-status-current-format "#[fg=${blue},bg=${gray}]${left_win_sep}#[bg=${blue}]${current_flags}#[fg=${black}] #I:#W #[fg=${blue},bg=${gray}]${right_win_sep}"
else
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${blue}] #I:#W ${current_flags} "
fi
if $show_powerline; then
tmux set-window-option -g window-status-format "#[fg=${light_gray},bg=${gray}]${left_win_sep}#[bg=${light_gray}]${flags}#[fg=${white}] #I:#W #[fg=${light_gray},bg=${gray}]${right_win_sep}"
else
tmux set-window-option -g window-status-format "#[fg=${white},bg=${light_gray}] #I:#W ${flags} "
fi
tmux set-window-option -g window-status-activity-style "bold"
tmux set-window-option -g window-status-bell-style "bold"
tmux set-window-option -g window-status-current-style "bold"
# Status right
tmux set-option -g status-right ""
2022-08-13 14:34:21 +05:30
for rplugin in "${rplugins[@]}"; do
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "git" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-git-colors' 'green dark_gray')"
script="#($current_dir/git.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "battery" ]; then
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-battery-colors' 'pink dark_gray')"
script="#($current_dir/battery.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "gpu-usage" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-gpu-usage-colors' 'orange dark_gray')"
script="#($current_dir/gpu_usage.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "cpu-usage" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-cpu-usage-colors' 'blue dark_gray')"
script="#($current_dir/cpu_info.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "ram-usage" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-ram-usage-colors' 'yellow dark_gray')"
script="#($current_dir/ram_info.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "network" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-colors' 'purple dark_gray')"
script="#($current_dir/network.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "network-bandwidth" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-bandwidth-colors' 'purple dark_gray')"
tmux set-option -g status-right-length 250
script="#($current_dir/network_bandwidth.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "network-ping" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-network-ping-colors' 'purple dark_gray')"
script="#($current_dir/network_ping.sh)"
fi
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "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
2022-08-13 14:34:21 +05:30
if [ "$rplugin" = "time" ]; then
2022-08-13 15:13:00 +05:30
IFS=' ' read -r -a colors <<<"$(get_tmux_option '@tmux2k-time-colors' 'cyan dark_gray')"
if $show_day_month && $show_military; then # military time and dd/mm
2022-08-13 14:42:46 +05:30
script=" %a %d/%m %R ${timezone}"
elif $show_military; then # only military time
2022-08-13 15:28:59 +05:30
script=" %a %m/%d %R ${timezone}"
elif $show_day_month; then # only dd/mm
2022-08-13 14:42:46 +05:30
script=" %a %d/%m %I:%M %p ${timezone}"
else
2022-08-13 14:42:46 +05:30
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
2022-08-09 06:28:34 +05:30
}
# run main function
main