diff options
| author | Peter Grayson <pete@jpgrayson.net> | 2019-03-08 12:43:04 -0500 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2019-03-11 10:56:20 -0400 |
| commit | bedf2ac2fbd24b8b2be9eb5a9f2dbf315a7dd7a3 (patch) | |
| tree | 786586b3960f3d51f1f2c89600072351be3435f6 /completions/fish/swaymsg.fish | |
| parent | c8085038cffb1dc1ba65d3746ec321f314f42567 (diff) | |
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.fish | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/completions/fish/swaymsg.fish b/completions/fish/swaymsg.fish index fd577413..37a24513 100644 --- a/completions/fish/swaymsg.fish +++ b/completions/fish/swaymsg.fish @@ -1,10 +1,11 @@ # swaymsg(1) completion 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." |
