15 lines
479 B
Bash
15 lines
479 B
Bash
_theme_completion() {
|
|
local options=(
|
|
'-m[Set mode: 'light', 'dark', or 'toggle']:mode:(light dark toggle)'
|
|
'-w[Set wallpaper file]:file:_files'
|
|
'-h[Set plain color (hex)]:hex color:'
|
|
'-f[Set flavor]:flavor:(content expressive fidelity fruit-salad monochrome neutral rainbow tonal-spot)'
|
|
'-c[Set contrast (-1 to 1)]:contrast:'
|
|
)
|
|
local curcontext="$curcontext" state line
|
|
typeset -A opt_args
|
|
_arguments -s $options
|
|
}
|
|
|
|
compdef _theme_completion theme
|