aboutsummaryrefslogtreecommitdiff
path: root/completions/fish/swaymsg.fish
diff options
context:
space:
mode:
authorPeter Grayson <pete@jpgrayson.net>2019-03-08 12:43:04 -0500
committerBrian Ashworth <bosrsf04@gmail.com>2019-03-08 14:29:39 -0500
commitb7fe5097e949b9bfde6fd52f26d2599068833563 (patch)
tree37459687d2f8a639bc0439c98fdb00bf87d61ad8 /completions/fish/swaymsg.fish
parent7f700e08ac8ac95c395b54c86b40d2fc79242310 (diff)
downloadsway-b7fe5097e949b9bfde6fd52f26d2599068833563.zip
sway-b7fe5097e949b9bfde6fd52f26d2599068833563.tar.gz
sway-b7fe5097e949b9bfde6fd52f26d2599068833563.tar.bz2
Add -p/--pretty option to swaymsg
This new option forces pretty (non-raw/non-JSON) output. By default, when not using a tty, swaymsg outputs using the "raw" format. This makes it impossible to, for example, pipe the pretty output to a pager such as `less` since piping does not use a tty. The new -p/--pretty option gives the user explicit control over the output format while retaining the default tty-dependent behavior. Signed-off-by: Peter Grayson <pete@jpgrayson.net>
Diffstat (limited to 'completions/fish/swaymsg.fish')
-rw-r--r--completions/fish/swaymsg.fish3
1 files changed, 2 insertions, 1 deletions
diff --git a/completions/fish/swaymsg.fish b/completions/fish/swaymsg.fish
index 636e350..3f1cc50 100644
--- a/completions/fish/swaymsg.fish
+++ b/completions/fish/swaymsg.fish
@@ -2,10 +2,11 @@
complete -f -c swaymsg
complete -c swaymsg -s h -l help --description "Show help message and quit."
+complete -c swaymsg -s p -l pretty --description "Use pretty output even when not using a tty."
complete -c swaymsg -s q -l quiet --description "Sends the IPC message but does not print the response from sway."
-complete -c swaymsg -s v -l version --description "Print the version (of swaymsg) and quit."
complete -c swaymsg -s r -l raw --description "Use raw output even if using tty."
complete -c swaymsg -s s -l socket -r --description "Use the specified socket path. Otherwise, swaymsg will ask where the socket is (which is the value of $SWAYSOCK, then of $I3SOCK)."
+complete -c swaymsg -s v -l version --description "Print the version (of swaymsg) and quit."
complete -c swaymsg -s t -l type -fr --description "Specify the type of IPC message."
complete -c swaymsg -s t -l type -fra 'get_workspaces' --description "Gets a JSON-encoded list of workspaces and their status."