From d654de9dbe7d0bfd5befdf6052c5204e55521a14 Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Thu, 29 Jun 2023 11:01:01 +0300 Subject: [PATCH] Force cal command to start week with monday --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index bf45f30..a027ee6 100644 --- a/.zshrc +++ b/.zshrc @@ -244,9 +244,9 @@ setopt INC_APPEND_HISTORY_TIME function cal { local CALENDAR=$(which -p cal) if [[ $# -eq 0 ]]; then - $CALENDAR -w3 + $CALENDAR -m -w3 else - $CALENDAR "$@" + $CALENDAR -m "$@" fi }