Browse Source

Force cal command to start week with monday

master
Arti Zirk 1 year ago
parent
commit
d654de9dbe
  1. 4
      .zshrc

4
.zshrc

@ -244,9 +244,9 @@ setopt INC_APPEND_HISTORY_TIME @@ -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
}

Loading…
Cancel
Save