minor color tweak

This commit is contained in:
KeeganForelight 2023-01-15 18:17:59 -05:00
parent 61c7c1a62b
commit cdab40acf9

4
bb
View File

@ -196,10 +196,10 @@ print_status() {
if [[ "$PRETTY" = true ]] ; then
# print with symbols
printf '%s  %s  at %s%s\n' $BIKES $DOCKS "$DEFAULT" "$STATION_NAME"
printf '%s  %s  %sat %s\n' $BIKES $DOCKS "$DEFAULT" "$STATION_NAME"
else
# print raw
printf '%d Bikes %d Docks at %s%s\n' $BIKES $DOCKS "$DEFAULT" "$STATION_NAME"
printf '%d Bikes %d Docks %sat %s\n' $BIKES $DOCKS "$DEFAULT" "$STATION_NAME"
fi
}