Files
fastfetch/completions/zsh
T
2021-12-06 20:03:17 +01:00

19 lines
385 B
Plaintext

#compdef _fastfetch fastfetch
function _fastfetch() {
local line
# single options
_arguments -C
if [[ ${#line[@]} -eq 0 ]]; then
_arguments -C \
{-h,--help}'[print help message and exit]' \
{-v,--version}'[print version and exit]'
fi
_arguments -C \
'(--structure)'{-s,--structure}'[Supply the structure to use]'
}