tmux-kanagawa/scripts/dracula.sh

255 lines
9.6 KiB
Bash
Raw Normal View History

2020-03-16 07:15:26 +01:00
#!/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
2020-05-30 01:50:58 +02:00
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
}
2020-03-16 07:15:26 +01:00
main()
{
datafile=/tmp/.dracula-tmux-data
2020-03-16 07:15:26 +01:00
# set current directory variable
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2020-04-29 17:35:35 +02:00
# set configuration option variables
show_battery=$(get_tmux_option "@dracula-show-battery" true)
show_network=$(get_tmux_option "@dracula-show-network" true)
show_weather=$(get_tmux_option "@dracula-show-weather" true)
2020-04-29 20:33:51 +02:00
show_fahrenheit=$(get_tmux_option "@dracula-show-fahrenheit" true)
show_location=$(get_tmux_option "@dracula-show-location" true)
2020-05-15 08:47:21 +02:00
show_powerline=$(get_tmux_option "@dracula-show-powerline" false)
show_flags=$(get_tmux_option "@dracula-show-flags" false)
show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley)
2020-12-16 17:59:24 +01:00
show_left_icon_padding=$(get_tmux_option "@dracula-left-icon-padding" 1)
2020-05-19 21:50:34 +02:00
show_military=$(get_tmux_option "@dracula-military-time" false)
2020-08-01 16:02:50 +02:00
show_timezone=$(get_tmux_option "@dracula-show-timezone" true)
show_left_sep=$(get_tmux_option "@dracula-show-left-sep")
show_right_sep=$(get_tmux_option "@dracula-show-right-sep")
show_border_contrast=$(get_tmux_option "@dracula-border-contrast" false)
2020-06-08 01:36:26 +02:00
show_cpu_usage=$(get_tmux_option "@dracula-cpu-usage" false)
show_ram_usage=$(get_tmux_option "@dracula-ram-usage" false)
2020-06-30 04:44:51 +02:00
show_gpu_usage=$(get_tmux_option "@dracula-gpu-usage" false)
show_day_month=$(get_tmux_option "@dracula-day-month" false)
show_time=$(get_tmux_option "@dracula-show-time" true)
2020-08-09 07:50:07 +02:00
show_refresh=$(get_tmux_option "@dracula-refresh-rate" 5)
show_network_bandwith=$(get_tmux_option "@dracula-network-bandwith" "")
2020-05-30 01:50:58 +02:00
2020-03-16 07:15:26 +01:00
# Dracula Color Pallette
white='#f8f8f2'
gray='#44475a'
dark_gray='#282a36'
light_purple='#bd93f9'
dark_purple='#6272a4'
cyan='#8be9fd'
green='#50fa7b'
orange='#ffb86c'
red='#ff5555'
pink='#ff79c6'
yellow='#f1fa8c'
2020-05-30 01:50:58 +02:00
# Handle left icon configuration
case $show_left_icon in
smiley)
2020-12-16 17:59:24 +01:00
left_icon="☺";;
session)
2020-12-16 17:59:24 +01:00
left_icon="#S";;
window)
2020-12-16 17:59:24 +01:00
left_icon="#W";;
*)
2020-12-16 17:59:24 +01:00
left_icon=$show_left_icon;;
esac
2020-12-16 17:59:24 +01:00
# Handle left icon padding
padding=""
if [ "$show_left_icon_padding" -gt "0" ]; then
padding="$(printf '%*s' $show_left_icon_padding)"
fi
2020-12-16 17:59:24 +01:00
left_icon="$left_icon$padding"
2020-05-30 01:50:58 +02:00
# Handle powerline option
if $show_powerline; then
right_sep="$show_right_sep"
left_sep="$show_left_sep"
fi
2020-05-30 01:50:58 +02:00
2020-03-16 07:15:26 +01:00
# start weather script in background
if $show_weather; then
$current_dir/sleep_weather.sh $show_fahrenheit $show_location &
fi
2020-08-01 16:02:50 +02:00
# 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
2020-05-30 01:50:58 +02:00
# sets refresh interval to every 5 seconds
2020-08-09 07:50:07 +02:00
tmux set-option -g status-interval $show_refresh
2020-03-16 07:15:26 +01:00
# 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
2020-03-16 07:15:26 +01:00
# set length
2020-03-16 07:15:26 +01:00
tmux set-option -g status-left-length 100
tmux set-option -g status-right-length 100
2020-03-16 07:15:26 +01:00
# pane border styling
if $show_border_contrast; then
tmux set-option -g pane-active-border-style "fg=${light_purple}"
else
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
fi
2020-03-16 07:15:26 +01:00
tmux set-option -g pane-border-style "fg=${gray}"
# message styling
tmux set-option -g message-style "bg=${gray},fg=${white}"
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while $show_weather && [ ! -f $datafile ]; do
sleep 0.01
done
2020-05-30 01:50:58 +02:00
# Powerline Configuration
if $show_powerline; then
2020-03-16 07:15:26 +01:00
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon} #[fg=${green},bg=${gray}]#{?client_prefix,#[fg=${yellow}],}${left_sep}"
tmux set-option -g status-right ""
powerbg=${gray}
2020-05-31 00:15:48 +02:00
if $show_battery; then # battery
tmux set-option -g status-right "#[fg=${pink},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh)"
powerbg=${pink}
fi
2020-06-08 01:36:26 +02:00
if $show_ram_usage; then
2020-06-04 05:44:17 +02:00
tmux set-option -ga status-right "#[fg=${cyan},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${cyan}] #($current_dir/ram_info.sh)"
powerbg=${cyan}
fi
2020-06-08 01:36:26 +02:00
if $show_cpu_usage; then
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #($current_dir/cpu_info.sh)"
powerbg=${orange}
fi
2020-06-30 04:44:51 +02:00
if $show_gpu_usage; then
tmux set-option -ga status-right "#[fg=${pink},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${pink}] #($current_dir/gpu_usage.sh)"
powerbg=${pink}
fi
2020-06-30 04:44:51 +02:00
2020-05-31 00:15:48 +02:00
if $show_network; then # network
tmux set-option -ga status-right "#[fg=${cyan},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${cyan}] #($current_dir/network.sh)"
powerbg=${cyan}
fi
if [[ "$show_network_bandwith" != "" ]]; then # network bandwith
tmux set-option -g status-right-length 250
tmux set-option -ga status-right "#[fg=${green},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${green}] #($current_dir/network_bandwith.sh)"
powerbg=${green}
fi
2020-05-31 00:15:48 +02:00
if $show_weather; then # weather
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #(cat $datafile)"
powerbg=${orange}
fi
if $show_time; then
2020-09-03 21:39:36 +02:00
if $show_day_month && $show_military ; then # military time and dd/mm
tmux set-option -ga status-right "#[fg=${dark_purple},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${white},bg=${dark_purple}] %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
tmux set-option -ga status-right "#[fg=${dark_purple},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${white},bg=${dark_purple}] %a %m/%d %R ${timezone} "
elif $show_day_month; then # only dd/mm
tmux set-option -ga status-right "#[fg=${dark_purple},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${white},bg=${dark_purple}] %a %d/%m %I:%M %p ${timezone} "
else
tmux set-option -ga status-right "#[fg=${dark_purple},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p ${timezone} "
fi
fi
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}"
2020-05-30 01:50:58 +02:00
# Non Powerline Configuration
else
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon}"
tmux set-option -g status-right ""
2020-05-30 01:50:58 +02:00
if $show_battery; then # battery
tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) "
fi
2020-06-08 01:36:26 +02:00
if $show_ram_usage; then
2020-06-04 05:44:17 +02:00
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}] #($current_dir/ram_info.sh) "
fi
2020-06-08 01:36:26 +02:00
if $show_cpu_usage; then
2020-06-04 05:33:41 +02:00
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #($current_dir/cpu_info.sh) "
fi
2020-06-30 04:44:51 +02:00
if $show_gpu_usage; then
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/gpu_usage.sh) "
fi
2020-06-30 04:44:51 +02:00
2020-05-30 01:50:58 +02:00
if $show_network; then # network
2020-05-31 05:30:45 +02:00
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}] #($current_dir/network.sh) "
fi
if [[ "$show_network_bandwith" != "" ]]; then # network bandwith
tmux set-option -g status-right-length 250
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${green}] #($current_dir/network_bandwith.sh) "
fi
2020-05-30 01:50:58 +02:00
if $show_weather; then # weather
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $datafile) "
fi
if $show_time; then
2020-09-03 21:39:36 +02:00
if $show_day_month && $show_military ; then # military time and dd/mm
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %d/%m %R ${timezone} "
elif $show_military; then # only military time
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %R ${timezone} "
elif $show_day_month; then # only dd/mm
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %d/%m %I:%M %p ${timezone} "
else
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p ${timezone} "
fi
fi
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"
2020-03-16 07:15:26 +01:00
}
# run main function
main