2020-03-16 07:15:26 +01:00
|
|
|
#!/usr/bin/env bash
|
2020-05-30 01:50:58 +02:00
|
|
|
|
2020-04-10 03:29:29 +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()
|
|
|
|
{
|
|
|
|
# set current directory variable
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2020-04-29 17:35:35 +02:00
|
|
|
|
|
|
|
# set configuration option variables
|
2020-04-21 00:35:04 +02:00
|
|
|
show_battery=$(get_tmux_option "@dracula-show-battery" true)
|
|
|
|
show_network=$(get_tmux_option "@dracula-show-network" true)
|
2020-04-10 03:29:29 +02:00
|
|
|
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)
|
2020-05-15 08:47:21 +02:00
|
|
|
show_powerline=$(get_tmux_option "@dracula-show-powerline" false)
|
2020-05-21 17:32:20 +02:00
|
|
|
show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley)
|
2020-05-19 21:50:34 +02:00
|
|
|
show_military=$(get_tmux_option "@dracula-military-time" false)
|
2020-05-21 17:58:33 +02:00
|
|
|
show_left_sep=$(get_tmux_option "@dracula-show-left-sep" )
|
|
|
|
show_right_sep=$(get_tmux_option "@dracula-show-right-sep" )
|
2020-05-27 07:43:13 +02:00
|
|
|
show_border_contrast=$(get_tmux_option "@dracula-border-contrast" false)
|
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-11 20:08:13 +02:00
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
|
|
|
|
# Handle left icon configuration
|
2020-05-21 17:32:20 +02:00
|
|
|
case $show_left_icon in
|
|
|
|
smiley)
|
2020-05-26 23:48:46 +02:00
|
|
|
left_icon="☺ ";;
|
2020-05-21 17:32:20 +02:00
|
|
|
session)
|
2020-05-29 04:44:22 +02:00
|
|
|
left_icon="#S ";;
|
2020-05-29 04:46:23 +02:00
|
|
|
window)
|
|
|
|
left_icon="#W ";;
|
2020-05-21 17:32:20 +02:00
|
|
|
*)
|
|
|
|
left_icon=$show_left_icon;;
|
|
|
|
esac
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
# Handle powerline option
|
2020-05-11 21:24:00 +02:00
|
|
|
if $show_powerline; then
|
2020-05-21 17:58:33 +02:00
|
|
|
right_sep="$show_right_sep"
|
|
|
|
left_sep="$show_left_sep"
|
2020-05-11 21:24:00 +02:00
|
|
|
fi
|
2020-05-30 01:50:58 +02:00
|
|
|
|
2020-03-16 07:15:26 +01:00
|
|
|
# start weather script in background
|
2020-04-10 03:29:29 +02:00
|
|
|
if $show_weather; then
|
2020-04-29 20:33:51 +02:00
|
|
|
$current_dir/sleep_weather.sh $show_fahrenheit &
|
2020-04-10 03:29:29 +02:00
|
|
|
fi
|
2020-03-16 07:15:26 +01:00
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
|
|
|
|
# sets refresh interval to every 5 seconds
|
2020-03-16 07:15:26 +01:00
|
|
|
tmux set-option -g status-interval 5
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
# set clock to 12 hour by default
|
2020-03-16 07:15:26 +01:00
|
|
|
tmux set-option -g clock-mode-style 12
|
|
|
|
|
|
|
|
# set length
|
|
|
|
tmux set-option -g status-left-length 100
|
|
|
|
tmux set-option -g status-right-length 100
|
|
|
|
|
|
|
|
# pane border styling
|
2020-05-27 07:43:13 +02:00
|
|
|
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}"
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
|
|
|
|
# Powerline Configuration
|
2020-05-15 07:38:33 +02:00
|
|
|
if $show_powerline; then
|
2020-03-16 07:15:26 +01:00
|
|
|
|
2020-05-21 17:32:20 +02: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}"
|
2020-05-15 07:38:33 +02:00
|
|
|
tmux set-option -g status-right ""
|
|
|
|
powerbg=${gray}
|
2020-04-21 00:35:04 +02:00
|
|
|
|
2020-05-31 00:15:48 +02:00
|
|
|
if $show_battery; then # battery
|
2020-05-30 17:09:14 +02:00
|
|
|
tmux set-option -g status-right "#[fg=${pink},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh)"
|
2020-05-15 07:38:33 +02:00
|
|
|
powerbg=${pink}
|
|
|
|
fi
|
2020-05-11 20:08:13 +02:00
|
|
|
|
2020-05-31 00:15:48 +02:00
|
|
|
if $show_network; then # network
|
2020-05-30 17:13:42 +02:00
|
|
|
tmux set-option -ga status-right "#[fg=${cyan},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${cyan}] #($current_dir/network.sh)"
|
2020-05-15 07:38:33 +02:00
|
|
|
powerbg=${cyan}
|
|
|
|
fi
|
2020-04-21 00:35:04 +02:00
|
|
|
|
2020-05-31 00:15:48 +02:00
|
|
|
if $show_weather; then # weather
|
2020-05-30 17:09:14 +02:00
|
|
|
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt)"
|
2020-05-15 07:38:33 +02:00
|
|
|
powerbg=${orange}
|
|
|
|
fi
|
2020-04-21 00:35:04 +02:00
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
if $show_military; then # military time
|
2020-05-20 19:31:39 +02:00
|
|
|
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 #(date +%Z) "
|
2020-05-20 19:28:35 +02:00
|
|
|
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 #(date +%Z) "
|
|
|
|
fi
|
|
|
|
|
2020-05-15 07:38:33 +02:00
|
|
|
tmux set-window-option -g window-status-current-format "#[fg=${gray},bg=${dark_purple}]${left_sep}#[fg=${white},bg=${dark_purple}] #I #W #[fg=${dark_purple},bg=${gray}]${left_sep}"
|
2020-05-30 01:50:58 +02:00
|
|
|
|
|
|
|
# Non Powerline Configuration
|
2020-05-15 07:38:33 +02:00
|
|
|
else
|
2020-05-31 04:46:30 +02:00
|
|
|
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon} "
|
2020-05-15 07:38:33 +02:00
|
|
|
|
|
|
|
tmux set-option -g status-right ""
|
2020-04-21 00:35:04 +02:00
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
if $show_battery; then # battery
|
2020-05-15 07:38:33 +02:00
|
|
|
tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) "
|
|
|
|
fi
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
if $show_network; then # network
|
2020-05-15 07:38:33 +02:00
|
|
|
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}]#($current_dir/network.sh) "
|
|
|
|
fi
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
if $show_weather; then # weather
|
2020-05-30 01:42:18 +02:00
|
|
|
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt)"
|
2020-05-15 07:38:33 +02:00
|
|
|
fi
|
|
|
|
|
2020-05-30 01:50:58 +02:00
|
|
|
if $show_military; then # military time
|
2020-05-20 19:31:39 +02:00
|
|
|
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 #(date +%Z) "
|
2020-05-20 19:28:35 +02:00
|
|
|
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 #(date +%Z) "
|
|
|
|
fi
|
|
|
|
|
2020-05-15 07:38:33 +02:00
|
|
|
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W "
|
|
|
|
|
|
|
|
fi
|
2020-03-16 07:15:26 +01:00
|
|
|
|
|
|
|
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W "
|
|
|
|
}
|
|
|
|
|
|
|
|
# run main function
|
|
|
|
main
|