12 lines
293 B
Bash
12 lines
293 B
Bash
_theme-completion() {
|
|
local options=(
|
|
'-m[set mode: light, dark, or toggle]:mode:(light dark toggle)'
|
|
'-w[set wallpaper: specify file path]:file:_files'
|
|
)
|
|
local curcontext="$curcontext" state line
|
|
typeset -A opt_args
|
|
_arguments -s $options
|
|
}
|
|
|
|
compdef _theme-completion theme
|