diff options
author | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-01-29 02:30:25 +0100 |
---|---|---|
committer | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-01-29 02:30:25 +0100 |
commit | a64e28135617574bb46fb9af9139b7283625ab6d (patch) | |
tree | bcdbc8a353474fc048c6425fd033fe1e54c1aafa | |
parent | 533e59f7b118af721d1e8a38169bdad3918a940a (diff) | |
parent | 7ac0fbe8e36b9ac6e221cd79c33fafd31a1a7ab6 (diff) |
Merge pull request #483 from aouelete/zsh-swaylock-completion
zsh completions for swaylock
-rw-r--r-- | completions/zsh/CMakeLists.txt | 2 | ||||
-rw-r--r-- | completions/zsh/_swaylock | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/completions/zsh/CMakeLists.txt b/completions/zsh/CMakeLists.txt index 561636f2..ac307d7d 100644 --- a/completions/zsh/CMakeLists.txt +++ b/completions/zsh/CMakeLists.txt @@ -1,4 +1,4 @@ install( - FILES _sway _swaymsg _swaygrab + FILES _sway _swaymsg _swaygrab _swaylock DESTINATION share/zsh/site-functions/ ) diff --git a/completions/zsh/_swaylock b/completions/zsh/_swaylock new file mode 100644 index 00000000..6163c089 --- /dev/null +++ b/completions/zsh/_swaylock @@ -0,0 +1,11 @@ +#compdef swaylock +# +# Completion script for swaylock +# + +_arguments -s \ + '(-v --version)'{-v,--version}'[Show the version number and quit]' \ + '(-h --help)'{-h,--help}'[Show help message and quit]' \ + '(-c --color)'{-c --color}'[Specify a color (rrggbb) instead of white]' \ + '(-i --image)'{-i --image}'[Display an image]' \ + '(-s --scaling)'{-s --scaling}'[Scaling mode: stretch, fill, fit, center, tile]' |