aboutsummaryrefslogtreecommitdiff
blob: bf22ded257029f263282e5fd37b732455bb2dbe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#compdef layman

# layman-1.1.1

local arguments actions_args actions global_opts add_actions

_layman_remote_overlays() {
  local layman_list_overlays
  layman_list_overlays=(${(S)${${(f)"$(layman -k -N -L 2>/dev/null)"}//\[*}#\* })
  compadd "$@" ${(kv)=layman_list_overlays} "ALL"
}

_layman_local_overlays() {
  local layman_list_overlays
  layman_list_overlays=(${(S)${${(f)"$(layman -N -l)"}//\[*}#\* })
  compadd "$@" ${(kv)=layman_list_overlays} "ALL"
}

actions=(
  --delete -d
  --sync -s
  --info -i
  --sync-all -S
  --list -L
  --list-local -l
  --fetch -f
)

global_opts=(
  '(--config -c)'{-c,--config}'[Select an alternative configuration file]:configuration file:_files'
  '(--overlays -o)'{-o,--overlays}'[Specifies the location of additional overlay lists]:overlay url:_urls'
  '(--nofetch -n)'{-n,--nofetch}'[Prevents from automatically fetching the remote lists of overlays]'
  '(--nocheck -k)'{-k,--nocheck}'[Prevents from checking the remote lists of overlays for complete overlay definitions]'
  '(--quiet -q)'{-q,--quiet}'[Makes layman completely quiet]'
  '(--verbose -v)'{-v,--verbose}'[Verbose output]'
  '(--quietness -Q)'{-Q,--quietness}'[Makes layman less verbose]:level:({0..4})'
  '(--nocolor -N)'{-N,--nocolor}'[Remove color codes from the output]'
)

add_actions=(
  -p --priority
  --add -a
)

actions_args=(
  "($actions --add -a)"{--add,-a}'[Add the given overlay to your installed overlays]:overlay:_layman_remote_overlays'
  "($actions --priority -p)"{--priority,-p}'[It will modify the priority of the added overlay]:priority:({0..100})'
  "($actions $add_actions)"{--delete,-d}'[Delete the given overlay from your installed overlays]:overlay:_layman_local_overlays'
  "($actions $add_actions)"{--sync,-s}'[Update the specified overlay]:overlat:_layman_local_overlays'
  "($actions $add_actions)"{--info,-i}'[Display all available information about the specified overlay]:overlay:_layman_remote_overlays'
  "($actions $add_actions)"{--sync-all,-S}'[Update all overlays]'
  "($actions $add_actions)"{--list,-L}'[List the contents of the remote list]'
  "($actions $add_actions)"{--list-local,-l}'[List the locally installed overlays]'
  "($actions $add_actions)"{--fetch,-f}'[Fetches the remote list of overlays]'
)

_arguments $global_opts[@] $actions_args[@]

# vim: set et sw=2 sts=2 ts=2 ft=zsh: