mirror of
https://github.com/artizirk/dotfiles.git
synced 2026-08-11 11:37:23 +03:00
Add support for debian's bsd calendar command
This commit is contained in:
@@ -272,6 +272,15 @@ setopt INC_APPEND_HISTORY_TIME
|
||||
# by default show 3 months of calendar with week number
|
||||
# but also allow to override it
|
||||
function cal {
|
||||
local BSDCALENDAR=$(which -p ncal)
|
||||
if [[ $# -eq 0 ]]; then
|
||||
$BSDCALENDAR -3b
|
||||
return
|
||||
else
|
||||
$BSDCALENDAR -b "$@"
|
||||
return
|
||||
fi
|
||||
|
||||
local CALENDAR=$(which -p cal)
|
||||
if [[ $# -eq 0 ]]; then
|
||||
$CALENDAR -m -w3
|
||||
|
||||
Reference in New Issue
Block a user