Skip to content

Commit

Permalink
fix: apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mklbravo committed Sep 5, 2024
1 parent 95cb54e commit b4913d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion window/window_current_format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ show_window_current_format() {
text="$(get_tmux_batch_option "@catppuccin_window_current_text" "#{b:pane_current_path}")" # use #W for application instead of directory
fill="$(get_tmux_batch_option "@catppuccin_window_current_fill" "number")" # number, all, none

current_window_format=$(build_window_format "$number" "$color" "$background" "$text" "$fill" "$type")
current_window_format=$(build_window_format "$number" "$color" "$background" "$text" "$fill" "current")

echo "$current_window_format"
}
2 changes: 1 addition & 1 deletion window/window_default_format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ show_window_default_format() {
text="$(get_tmux_batch_option "@catppuccin_window_default_text" "#{b:pane_current_path}")" # use #W for application instead of directory
fill="$(get_tmux_batch_option "@catppuccin_window_default_fill" "number")" # number, all, none

default_window_format=$(build_window_format "$number" "$color" "$background" "$text" "$fill" "$middle_seprator" "$type")
default_window_format=$(build_window_format "$number" "$color" "$background" "$text" "$fill" "$middle_seprator" "default")

echo "$default_window_format"
}

0 comments on commit b4913d7

Please sign in to comment.