Skip to content

Commit 84d00af

Browse files
fixing default values for colors
1 parent 1611c84 commit 84d00af

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

scripts/colors.sh

-16
This file was deleted.

scripts/dracula.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ main()
5151
pink="#ff79c6"
5252
yellow="#f1fa8c"
5353

54-
source "$(get_tmux_option "@dracula-colors" "$current_dir/colors.sh")"
54+
colors_file="$(get_tmux_option "@dracula-colors" "")"
55+
if [ -f "$colors_file" ]; then
56+
source "$colors_file"
57+
fi
5558

5659
# Set transparency variables - Colors and window dividers
5760
if $transparent_powerline_bg; then

0 commit comments

Comments
 (0)