blob: fa68159256ff8e538ef90c5ca1296bf1b1cc9ecd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#compdef systemd-ask-password
local curcontext="$curcontext" state lstate line
_arguments \
{-h,--help}'[Show this help]' \
'--icon=[Icon name]:icon name:' \
'--timeout=[Timeout in sec]:timeout (seconds):' \
'--no-tty[Ask question via agent even on TTY]' \
'--accept-cached[Accept cached passwords]' \
'--multiple[List multiple passwords if available]'
#vim: set ft=zsh sw=4 ts=4 et
|