diff options
author | Drew DeVault <[email protected]> | 2018-11-08 14:39:20 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2018-11-08 14:39:20 -0500 |
commit | 5880478fb1d9a0f61696957f36a33f0ef7b85e73 (patch) | |
tree | 375c263c1d5fcd87a98c8f4a4932307b9f6f8468 /sway/sway.5.scd | |
parent | 0bc819dd8b09da29e538667b60e78cb09fa5dc6c (diff) | |
parent | c248e96b849a125d88d0fffc744d0f98b8c558d9 (diff) |
Merge pull request #3090 from RedSoxFan/resize-set-improved
resize set: implement width and height keywords
Diffstat (limited to 'sway/sway.5.scd')
-rw-r--r-- | sway/sway.5.scd | 22 |
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> percentage points. If the units are omitted, floating containers are resized in px and tiled containers by ppt. _amount_ will default to 10 if omitted. -*resize set* <width> [px|ppt] <height> [px|ppt] - Sets the width and height of the currently focused container to _width_ and - _height_, specified in pixels or percentage points. If the units are - omitted, floating containers are resized in px and tiled containers by ppt. - If _width_ or _height_ is 0, no resize is done on that axis. +*resize set* height <height> [px|ppt] + Sets the height of the container to _height_, specified in pixels or + percentage points. If the units are omitted, floating containers are + resized in px and tiled containers by ppt. If _height_ is 0, the container + will not be resized. + +*resize set* [width] <width> [px|ppt] + Sets the width of the container to _width_, specified in pixels or + percentage points. If the units are omitted, floating containers are + resized in px and tiled containers by ppt. If _width_ is 0, the container + will not be resized. + +*resize set* [width] <width> [px|ppt] [height] <height> [px|ppt] + Sets the width and height of the container to _width_ and _height_, + specified in pixels or percentage points. If the units are omitted, + floating containers are resized in px and tiled containers by ppt. If + _width_ or _height_ is 0, the container will not be resized on that axis. *scratchpad show* Shows a window from the scratchpad. Repeatedly using this command will |