Force cal command to start week with monday

This commit is contained in:
Arti Zirk 2023-06-29 11:01:01 +03:00
parent 625dae5ac2
commit d654de9dbe
1 changed files with 2 additions and 2 deletions

4
.zshrc
View File

@ -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
}