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
|
#compdef pc profile-cleaner
_pc() {
local -a options
options=(
'b:Brave (stable, beta, dev and nightly)'
'c:Chromium (stable, beta, and dev)'
'ck:ConKeror'
'f:Firefox (stable and beta)'
'fa:Falkon'
'gc:Google-Chrome (stable, beta, and dev)'
'h:Heftigs aurora'
'i:Icecat'
'id:IceDove'
'ix:InoX'
'm:Midori'
'n:Newsboat'
'o:Opera (stable, next, and developer)'
'pm:PaleMoon'
'q:QupZilla'
's:Seamonkey'
't:Thunderbird'
'to:TOrbrowser'
'p:Paths'
'v:Vivaldi (stable and snapshot)'
)
_describe 'options' options
}
_pc
|