mirror of
https://github.com/artizirk/dotfiles.git
synced 2026-08-11 19:47:14 +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
|
# by default show 3 months of calendar with week number
|
||||||
# but also allow to override it
|
# but also allow to override it
|
||||||
function cal {
|
function cal {
|
||||||
|
local BSDCALENDAR=$(which -p ncal)
|
||||||
|
if [[ $# -eq 0 ]]; then
|
||||||
|
$BSDCALENDAR -3b
|
||||||
|
return
|
||||||
|
else
|
||||||
|
$BSDCALENDAR -b "$@"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
local CALENDAR=$(which -p cal)
|
local CALENDAR=$(which -p cal)
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
$CALENDAR -m -w3
|
$CALENDAR -m -w3
|
||||||
|
|||||||
Reference in New Issue
Block a user