From cdab40acf97c51502a495e7e90762fdb76ffb63a Mon Sep 17 00:00:00 2001 From: KeeganForelight Date: Sun, 15 Jan 2023 18:17:59 -0500 Subject: [PATCH] minor color tweak --- bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bb b/bb index bc5c249..a73596b 100755 --- a/bb +++ b/bb @@ -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 }