Skip to content

Commit

Permalink
fixing default values for colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Theoreticallyhugo committed Oct 11, 2024
1 parent 1611c84 commit 84d00af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
16 changes: 0 additions & 16 deletions scripts/colors.sh

This file was deleted.

5 changes: 4 additions & 1 deletion scripts/dracula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ main()
pink="#ff79c6"
yellow="#f1fa8c"

source "$(get_tmux_option "@dracula-colors" "$current_dir/colors.sh")"
colors_file="$(get_tmux_option "@dracula-colors" "")"
if [ -f "$colors_file" ]; then
source "$colors_file"
fi

# Set transparency variables - Colors and window dividers
if $transparent_powerline_bg; then
Expand Down

0 comments on commit 84d00af

Please sign in to comment.