diff --git a/src/main.sh b/src/main.sh index df1dd82..3b9b17f 100755 --- a/src/main.sh +++ b/src/main.sh @@ -332,7 +332,6 @@ fi if [ "${1:-}" = "--day" ]; then DISPLAY_DATE="$2" - echo "Jumping to day $DISPLAY_DATE!" selection=$( __show_day | $FZF \ @@ -342,7 +341,7 @@ if [ "${1:-}" = "--day" ]; then --no-input \ --margin='20%' \ --border='double' \ - --border-label="🗓️ $(date -d "$DISPLAY_DATE" +"%a %e %b %Y")" \ + --border-label="🗓️ $(date -d "$DISPLAY_DATE" +"%A %e %B %Y")" \ --color=label:bold:green \ --border-label-pos=3 \ --delimiter='|' \ @@ -367,7 +366,6 @@ fi if [ "${1:-}" = "--date" ]; then DISPLAY_DATE="$2" - echo "Jumping to date $2!" fi DISPLAY_DATE=${DISPLAY_DATE:-today} DISPLAY_DATE=$(date -d "$DISPLAY_DATE" +"%D")