mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-01-28 03:54:08 +00:00
11 lines
376 B
Plaintext
11 lines
376 B
Plaintext
#compdef cacaclock
|
|
|
|
local -a arguments=(
|
|
'(-d --dateformat)'{-d+,--dateformat=}'[use specified format as strftime argument]: :_date_formats'
|
|
'(-f --font)'{-f+,--font=}'[use specified font for time display]:font file:_files -g "/usr/share/figlet/*.tlf"'
|
|
'(-)'{-h,--help}'[display usage help]'
|
|
'(-)'{-v,--version}'[display version information]'
|
|
)
|
|
|
|
_arguments $arguments
|