2016-01-18 04:06:26 +00:00
|
|
|
#compdef swaymsg
|
|
|
|
#-----------------
|
|
|
|
# Description
|
|
|
|
# -----------
|
|
|
|
#
|
|
|
|
# Completion script for swaymsg in sway wm (http://swaywm.org)
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------
|
|
|
|
# Author
|
|
|
|
# --------
|
|
|
|
#
|
|
|
|
# * Seth Barberee <seth.barberee@gmail.com>
|
|
|
|
#
|
|
|
|
# -------------------------------------------
|
2016-01-29 02:06:13 +00:00
|
|
|
|
|
|
|
types=(
|
|
|
|
'get_workspaces'
|
2018-05-11 13:51:47 +00:00
|
|
|
'get_seats'
|
2016-01-29 02:06:13 +00:00
|
|
|
'get_inputs'
|
|
|
|
'get_outputs'
|
|
|
|
'get_tree'
|
|
|
|
'get_marks'
|
|
|
|
'get_bar_config'
|
|
|
|
'get_version'
|
2018-07-18 10:52:29 +00:00
|
|
|
'get_binding_modes'
|
|
|
|
'get_config'
|
2018-07-18 11:30:39 +00:00
|
|
|
'send_tick'
|
2019-03-08 19:39:35 +00:00
|
|
|
'subscribe'
|
2016-01-29 02:06:13 +00:00
|
|
|
)
|
|
|
|
|
2016-01-26 21:18:09 +00:00
|
|
|
_arguments -s \
|
2019-01-01 15:16:11 +00:00
|
|
|
'(-h --help)'{-h,--help}'[Show help message and quit]' \
|
2019-03-08 17:43:04 +00:00
|
|
|
'(-m --monitor)'{-m,--monitor}'[Monitor until killed (-t SUBSCRIBE only)]' \
|
|
|
|
'(-p --pretty)'{-p,--pretty}'[Use pretty output even when not using a tty]' \
|
2019-01-01 15:16:11 +00:00
|
|
|
'(-q --quiet)'{-q,--quiet}'[Be quiet]' \
|
|
|
|
'(-r --raw)'{-r,--raw}'[Use raw output even if using a tty]' \
|
|
|
|
'(-s --socket)'{-s,--socket}'[Use the specified socket path]:files:_files' \
|
2019-03-08 17:43:04 +00:00
|
|
|
'(-t --type)'{-t,--type}'[Specify the message type]:type:{_describe "type" types}' \
|
|
|
|
'(-v --version)'{-v,--version}'[Show the version number and quit]'
|