initial commit
This commit is contained in:
commit
2dee14af5f
9 changed files with 598 additions and 0 deletions
12
common/bash-completion
Normal file
12
common/bash-completion
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
_nts_completions()
|
||||
{
|
||||
local cur prev opts
|
||||
COMPREPLY=()
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
opts="s r p"
|
||||
|
||||
COMPREPLY=( $(compgen -W "${opts[*]}" -- $cur) )
|
||||
return 0
|
||||
}
|
||||
complete -F _nts_completions night-theme-switcher
|
||||
complete -F _nts_completions nts
|
||||
Loading…
Add table
Add a link
Reference in a new issue