mirror of
https://github.com/swaywm/sway.git
synced 2026-04-28 06:46:26 -04:00
The new get_bindings IPC interface (IPC_GET_BINDINGS) allows swaymsg (and other IPC clients) to interrogate sway's input bindings for all configured binding modes. The output of get_bindings is a JSON object mapping each configured binding mode (e.g. "default", "resize", etc.) to an array of binding objects. The binding JSON objects are of the same form as those in IPC_EVENT_BINDING. N.B. a big chunk of code from ipc_event_binding() is moved to a new ipc_json_describe_binding() function which services both the new IPC_GET_BINDINGS as well as the existing IPC_EVENT_BINDING commands. Signed-off-by: Peter Grayson <pete@jpgrayson.net>
39 lines
1 KiB
Text
39 lines
1 KiB
Text
#compdef swaymsg
|
|
#-----------------
|
|
# Description
|
|
# -----------
|
|
#
|
|
# Completion script for swaymsg in sway wm (http://swaywm.org)
|
|
#
|
|
# ------------------------------------------------------
|
|
# Author
|
|
# --------
|
|
#
|
|
# * Seth Barberee <seth.barberee@gmail.com>
|
|
#
|
|
# -------------------------------------------
|
|
|
|
types=(
|
|
'get_workspaces'
|
|
'get_seats'
|
|
'get_inputs'
|
|
'get_outputs'
|
|
'get_tree'
|
|
'get_marks'
|
|
'get_bar_config'
|
|
'get_version'
|
|
'get_binding_modes'
|
|
'get_bindings'
|
|
'get_config'
|
|
'send_tick'
|
|
)
|
|
|
|
_arguments -s \
|
|
'(-h --help)'{-h,--help}'[Show help message and quit]' \
|
|
'(-m --monitor)'{-m,--monitor}'[Monitor until killed (-t SUBSCRIBE only)]' \
|
|
'(-p --pretty)'{-p,--pretty}'[Use pretty output even when not using a tty]' \
|
|
'(-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' \
|
|
'(-t --type)'{-t,--type}'[Specify the message type]:type:{_describe "type" types}' \
|
|
'(-v --version)'{-v,--version}'[Show the version number and quit]'
|