|
37 | 37 | # Monokai Pro Color Pallette
|
38 | 38 | white='#fcfcfa'
|
39 | 39 | black='#2d2a2e'
|
| 40 | + dark_gray='#403e41' |
40 | 41 | gray='#727072'
|
41 | 42 | red='#ff6188'
|
42 | 43 | green='#a9dc76'
|
@@ -124,12 +125,12 @@ main()
|
124 | 125 | tmux set-option -g message-style "bg=${gray},fg=${white}"
|
125 | 126 |
|
126 | 127 | # status bar
|
127 |
| - tmux set-option -g status-style "bg=${gray},fg=${white}" |
| 128 | + tmux set-option -g status-style "bg=${dark_gray},fg=${white}" |
128 | 129 |
|
129 | 130 | # Status left
|
130 | 131 | if $show_powerline; then
|
131 |
| - tmux set-option -g status-left "#[fg=${green},bg=${black}]#{?client_prefix,#[fg=${magenta}],}#[bg=${green},fg=${black},bold]#{?client_prefix,#[bg=${magenta}],} ${left_icon} #[fg=${green},bg=${gray}]#{?client_prefix,#[fg=${magenta}],}${left_sep}" |
132 |
| - powerbg=${gray} |
| 132 | + tmux set-option -g status-left "#[fg=${green},bg=${black}]#{?client_prefix,#[fg=${magenta}],}#[bg=${green},fg=${black},bold]#{?client_prefix,#[bg=${magenta}],} ${left_icon} #[fg=${green},bg=${dark_gray}]#{?client_prefix,#[fg=${magenta}],}${left_sep}" |
| 133 | + powerbg=${dark_gray} |
133 | 134 | else
|
134 | 135 | tmux set-option -g status-left "#[bg=${green},fg=${black},bold]#{?client_prefix,#[bg=${magenta}],} ${left_icon} "
|
135 | 136 | fi
|
@@ -208,7 +209,7 @@ main()
|
208 | 209 | script="#($current_dir/network_bandwidth.sh)"
|
209 | 210 |
|
210 | 211 | elif [ $plugin = "network-ping" ]; then
|
211 |
| - IFS=' ' read -r -a colors <<<$(get_tmux_option "@monokai-network-ping-colors" "gray white") |
| 212 | + IFS=' ' read -r -a colors <<<$(get_tmux_option "@monokai-network-ping-colors" "dark_gray white") |
212 | 213 | script="#($current_dir/network_ping.sh)"
|
213 | 214 |
|
214 | 215 | elif [ $plugin = "network-vpn" ]; then
|
@@ -248,7 +249,7 @@ main()
|
248 | 249 | script="#($current_dir/weather_wrapper.sh $show_fahrenheit $show_location '$fixed_location')"
|
249 | 250 |
|
250 | 251 | elif [ $plugin = "time" ]; then
|
251 |
| - IFS=' ' read -r -a colors <<< $(get_tmux_option "@monokai-time-colors" "green white") |
| 252 | + IFS=' ' read -r -a colors <<< $(get_tmux_option "@monokai-time-colors" "green black") |
252 | 253 | if [ -n "$time_format" ]; then
|
253 | 254 | script=${time_format}
|
254 | 255 | else
|
@@ -292,19 +293,19 @@ main()
|
292 | 293 | done
|
293 | 294 |
|
294 | 295 | if $show_powerline; then
|
295 |
| - tmux set-option -ga status-right "#[fg=${green},bg=${yellow}]${right_sep}#[bg=${green},fg=${black},bold] #h #[bg=${black},fg=${green}]" |
| 296 | + tmux set-option -ga status-right "#[fg=${green},bg=${magenta}]${right_sep}#[bg=${green},fg=${black},bold] #h #[bg=${black},fg=${green}]" |
296 | 297 | else
|
297 | 298 | tmux set-option -ga status-right "#[fg=${green},bg=${blue}]${right_sep}#[bg=${green},fg=${black},bold] #h "
|
298 | 299 | fi
|
299 | 300 |
|
300 | 301 | # Window option
|
301 | 302 | if $show_powerline; then
|
302 |
| - tmux set-window-option -g window-status-current-format "#[bg=${white},fg=${gray}]${left_sep} #[fg=${black},bg=${white}]#I #W${current_flags} #[bg=${gray},fg=${white}]${left_sep}" |
| 303 | + tmux set-window-option -g window-status-current-format "#[bg=${gray},fg=${dark_gray}]${left_sep} #[fg=${white},bg=${gray}]#I #W${current_flags} #[bg=${dark_gray},fg=${gray}]${left_sep}" |
303 | 304 | else
|
304 |
| - tmux set-window-option -g window-status-current-format "#[fg=${gray},bg=${white}] #I #W${current_flags} " |
| 305 | + tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${gray}] #I #W${current_flags} " |
305 | 306 | fi
|
306 | 307 |
|
307 |
| - tmux set-window-option -g window-status-format "#[bg=${gray},fg=${gray}]${left_sep} #[fg=${white},bg=${gray}]#I #W${flags} #[bg=${gray},fg=${gray}]${left_sep}" |
| 308 | + tmux set-window-option -g window-status-format "#[bg=${dark_gray},fg=${dark_gray}]${left_sep} #[fg=${white},bg=${dark_gray}]#I #W${flags} #[bg=${dark_gray},fg=${dark_gray}]${left_sep}" |
308 | 309 | tmux set-window-option -g window-status-activity-style "bold"
|
309 | 310 | tmux set-window-option -g window-status-bell-style "bold"
|
310 | 311 | tmux set-window-option -g window-status-separator ""
|
|
0 commit comments