Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions todofi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,6 @@ linescount() {
fi
}

TODOFISH_HEADER="<span color=\"${COLOR_TITLE}\">Todofi.sh</span>"

config() {
HELP="${TODOFISH_HEADER} - Configuration files"

Expand Down Expand Up @@ -486,6 +484,10 @@ while getopts "h?af:F:c:d:" opt; do
esac
done

if [ ! -v TODOFISH_HEADER ]; then
TODOFISH_HEADER="<span color=\"${COLOR_TITLE}\">Todofi.sh</span>"
fi

if [[ $ADD_MODE ]]; then
add
else
Expand Down