Changed naming of some things

This commit is contained in:
Ethan Edwards 2020-06-07 19:36:26 -04:00
parent 420eed6fd4
commit e41cabee1c
2 changed files with 8 additions and 8 deletions

View file

@ -24,5 +24,5 @@ Customize the status bar by adding any of these lines to your .tmux.conf as desi
* Enable military time: `set -g @dracula-military-time true` * Enable military time: `set -g @dracula-military-time true`
* Switch the left smiley icon `set -g @dracula-show-left-icon session` it can accept `session`, `smiley`, `window`, or any character. * Switch the left smiley icon `set -g @dracula-show-left-icon session` it can accept `session`, `smiley`, `window`, or any character.
* Enable high contrast pane border: `set -g @dracula-border-contrast true` * Enable high contrast pane border: `set -g @dracula-border-contrast true`
* Enable cpu percentage: `set -g @dracula-cpu-percent true` * Enable cpu percentage: `set -g @dracula-cpu-usage true`
* Enable ram percentage: `set -g @dracula-ram-percent true` * Enable ram percentage: `set -g @dracula-ram-usage true`

View file

@ -27,8 +27,8 @@ main()
show_left_sep=$(get_tmux_option "@dracula-show-left-sep") show_left_sep=$(get_tmux_option "@dracula-show-left-sep")
show_right_sep=$(get_tmux_option "@dracula-show-right-sep") show_right_sep=$(get_tmux_option "@dracula-show-right-sep")
show_border_contrast=$(get_tmux_option "@dracula-border-contrast" false) show_border_contrast=$(get_tmux_option "@dracula-border-contrast" false)
show_cpu_percentage=$(get_tmux_option "@dracula-cpu-percent" false) show_cpu_usage=$(get_tmux_option "@dracula-cpu-usage" false)
show_ram_percentage=$(get_tmux_option "@dracula-ram-percent" false) show_ram_usage=$(get_tmux_option "@dracula-ram-usage" false)
# Dracula Color Pallette # Dracula Color Pallette
white='#f8f8f2' white='#f8f8f2'
@ -104,12 +104,12 @@ main()
powerbg=${pink} powerbg=${pink}
fi fi
if $show_ram_percent; then if $show_ram_usage; then
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)" 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} powerbg=${cyan}
fi fi
if $show_cpu_percentage; then 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)" 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} powerbg=${orange}
fi fi
@ -141,11 +141,11 @@ main()
if $show_battery; then # battery if $show_battery; then # battery
tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) " tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) "
fi fi
if $show_ram_percentage; then if $show_ram_usage; then
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}] #($current_dir/ram_info.sh) " tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}] #($current_dir/ram_info.sh) "
fi fi
if $show_cpu_percentage; then if $show_cpu_usage; then
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #($current_dir/cpu_info.sh) " tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #($current_dir/cpu_info.sh) "
fi fi