aboutsummaryrefslogtreecommitdiffstats
path: root/sway/sway.5.scd
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-08 14:17:49 -0500
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-08 14:17:49 -0500
commitc248e96b849a125d88d0fffc744d0f98b8c558d9 (patch)
tree375c263c1d5fcd87a98c8f4a4932307b9f6f8468 /sway/sway.5.scd
parentMerge pull request #3089 from sghctoma/fix-clang-build (diff)
downloadsway-c248e96b849a125d88d0fffc744d0f98b8c558d9.tar.gz
sway-c248e96b849a125d88d0fffc744d0f98b8c558d9.tar.zst
sway-c248e96b849a125d88d0fffc744d0f98b8c558d9.zip
resize set: implement width and height keywords
This implements the following syntaxes from `i3 4.16`: * `resize set [width] <width> [px|ppt]` * `resize set height <height> [px|ppt]` * `resize set [width] <width> [px|ppt] [height] <height> [px|ppt]` Additionally, a bug was fixed that caused setting the height of a tiled container to change the width instead due to a typo.
Diffstat (limited to 'sway/sway.5.scd')
-rw-r--r--sway/sway.5.scd22
1 files changed, 17 insertions, 5 deletions
diff --git a/sway/sway.5.scd b/sway/sway.5.scd
index 3bf6233d..8df59fc0 100644
--- a/sway/sway.5.scd
+++ b/sway/sway.5.scd
@@ -210,11 +210,23 @@ set|plus|minus <amount>
210 percentage points. If the units are omitted, floating containers are resized 210 percentage points. If the units are omitted, floating containers are resized
211 in px and tiled containers by ppt. _amount_ will default to 10 if omitted. 211 in px and tiled containers by ppt. _amount_ will default to 10 if omitted.
212 212
213*resize set* <width> [px|ppt] <height> [px|ppt] 213*resize set* height <height> [px|ppt]
214 Sets the width and height of the currently focused container to _width_ and 214 Sets the height of the container to _height_, specified in pixels or
215 _height_, specified in pixels or percentage points. If the units are 215 percentage points. If the units are omitted, floating containers are
216 omitted, floating containers are resized in px and tiled containers by ppt. 216 resized in px and tiled containers by ppt. If _height_ is 0, the container
217 If _width_ or _height_ is 0, no resize is done on that axis. 217 will not be resized.
218
219*resize set* [width] <width> [px|ppt]
220 Sets the width of the container to _width_, specified in pixels or
221 percentage points. If the units are omitted, floating containers are
222 resized in px and tiled containers by ppt. If _width_ is 0, the container
223 will not be resized.
224
225*resize set* [width] <width> [px|ppt] [height] <height> [px|ppt]
226 Sets the width and height of the container to _width_ and _height_,
227 specified in pixels or percentage points. If the units are omitted,
228 floating containers are resized in px and tiled containers by ppt. If
229 _width_ or _height_ is 0, the container will not be resized on that axis.
218 230
219*scratchpad show* 231*scratchpad show*
220 Shows a window from the scratchpad. Repeatedly using this command will 232 Shows a window from the scratchpad. Repeatedly using this command will