Add plugin for tmux-continuum status

This commit is contained in:
Aaron Kollasch 2022-10-28 03:11:39 -04:00
parent b603b24bd6
commit 5af1faa367
No known key found for this signature in database
GPG key ID: F813CAE853E39883
3 changed files with 101 additions and 1 deletions

View file

@ -212,6 +212,10 @@ main()
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-terraform-colors" "light_purple dark_gray")
script="#($current_dir/terraform.sh $terraform_label)"
elif [ $plugin = "continuum" ]; then
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-continuum-colors" "cyan dark_gray")
script="#($current_dir/continuum.sh)"
elif [ $plugin = "weather" ]; then
IFS=' ' read -r -a colors <<< $(get_tmux_option "@dracula-weather-colors" "orange dark_gray")
script="#($current_dir/weather_wrapper.sh $show_fahrenheit $show_location $fixed_location)"