diff --git a/plugins/custom_text.sh b/plugins/custom_text.sh index eb0acbc..dc5ffaf 100644 --- a/plugins/custom_text.sh +++ b/plugins/custom_text.sh @@ -9,10 +9,10 @@ function wish_custom_text_end() { function wish_custom_text_set_colors() { WISH_CUSTOM_TEXT_FG=${WISH_CUSTOM_TEXT_FG:-$WISH_DEFAULT_FG} WISH_CUSTOM_TEXT_BG=${WISH_CUSTOM_TEXT_BG:-$WISH_DEFAULT_BG} - local default_text='To set custom text here, add WISH_CUSTOM_TEXT="your text" in ~/.bashrc' - WISH_CUSTOM_TEXT=${WISH_CUSTOM_TEXT:-$default_text} + local default_text='To set custom text here, add text="your text" in your config' + WISH_CUSTOM_TEXT_TEXT=${WISH_CUSTOM_TEXT:-$default_text} } function wish_custom_text_main() { - wish_append $WISH_CUSTOM_TEXT_BG $WISH_CUSTOM_TEXT_FG "$WISH_CUSTOM_TEXT" + wish_append $WISH_CUSTOM_TEXT_BG $WISH_CUSTOM_TEXT_FG "$WISH_CUSTOM_TEXT_TEXT" }