From fcd007155552376fa5c482d5d650b90f9a7e172e Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Sun, 17 Jan 2016 22:06:26 -0600 Subject: added basic zsh shell completion for sway, swaybg, and swaygrab --- completions/zsh/_swaygrab | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 completions/zsh/_swaygrab (limited to 'completions/zsh/_swaygrab') diff --git a/completions/zsh/_swaygrab b/completions/zsh/_swaygrab new file mode 100644 index 00000000..64d9d2c8 --- /dev/null +++ b/completions/zsh/_swaygrab @@ -0,0 +1,28 @@ +#compdef swaygrab +#----------------- +# Description +# ----------- +# +# Completion script for swaygrab in the sway wm (http://swaywm.org) +# +# ----------------------------------------------------- +# Author +# ------ +# +# * Seth Barberee +# +# ------------------------------------------ + +_swaygrab() { + local -a options + options=('--version:shows version' + '--help:shows help message' + '--capture:Captures multiple frames as video as passes into ffmpeg until SIGTERM (ctrl+c) is sent to swaygrab' + '--output:Use the specified output. If no output is defined, the currently focused output in sway is used' + '--socket:Use the specified socket path. Otherwise, swayuses $SWAYSOCK then $I3SOCK' + '--rate:Specify a framerate (in fps). Used in combination with -c. Default is 30 and must be an integer' + '--raw:Instead of ImageMagick or ffmpeg, dump raw rgba data to stdout' + ) + _describe 'values' options + } +_swaygrab "$@" -- cgit v1.2.3-54-g00ecf