aboutsummaryrefslogtreecommitdiff
path: root/sway/sway-output.5.scd
AgeCommit message (Collapse)Author
2020-05-11Simplify repaint scheduling documentationKenny Levinsen
The current documentation for repaint scheduling is very technical and somewhat confusing. Closes: https://github.com/swaywm/sway/issues/4769
2020-04-29Correct typo in sway-output.5.scdEjez
2020-04-21Restrict relative output transforms to runtime changesSimon Ser
Prevent them from being used in the config file. This is a breaking config file change. References: https://github.com/swaywm/sway/issues/5236
2020-03-21Fix output mode usageSimon Ser
The "Hz" part is required.
2020-03-07Add an adaptive_sync output commandSimon Ser
This enables/disables adaptive synchronization on the output. For now, the default is disabled because it might cause flickering on some hardware if clients don't submit frames at regular enough intervals. In the future an "auto" option will only enable adaptive sync if a fullscreen client opts-in via a Wayland protocol.
2020-02-17Specify that output transform applies clockwise rotationsSimon Ser
2020-01-10integer scaling, not integralCassandra McCarthy
2019-11-29add scale_filter output config optionRonan Pigott
2019-11-17Add note about backends to output max_render_timeIvan Molodetskikh
2019-11-17view: add max_render_timeIvan Molodetskikh
2019-11-17output: add max_render_timeIvan Molodetskikh
2019-11-04Add --custom to `output mode` commandSimon Ser
This forces to set the mode as a custom mode.
2019-10-02Fix syntax in examples in sway-output(5)Arkadiusz Hiler
Some examples use comma to separate x and y for setting the output position which is wrong. Let's change it to spaces, as correctly demonstrated in the `output <name> position|pos <X> <Y>` section.
2019-09-11sway-output.5: fix variable nameMartin Michlmayr
__foo__ is verbatim in scdoc, but we want the variable foo in italic, i.e. _foo_.
2019-07-17cmd_output: support current output aliasBrian Ashworth
Similar to seat command, this provides an alias for the current output. Instead of the output name or identifier, `-` can be used to operate on the focused output by name and `--` can be used to operate on the focused output by its identifier. This will prevent operating on the no-op output when using either alias.
2019-05-14Implement output toggleMoelf
discussed in #4136, this can't handle wildcard but won't crash.
2019-03-24Add support for manually setting subpixel hinting on outputs.Geoff Greer
Many laptop screens report unknown subpixel order. Allow users to manually set subpixel hinting to work around this. Addresses https://github.com/swaywm/sway/issues/3163
2019-02-27Add output dpms to manpageemersion
2019-01-28Document cursor moving between adjacent outputsPeter Grayson
Add a sentence to sway-output.5.scd to highlight that the cursor can only be moved between immediately adjacent outputs. References issue #3529 Signed-off-by: Peter Grayson <pete@jpgrayson.net>
2019-01-27Remove unnecessary underscores in man pagesDrew DeVault
2019-01-04Fixed formulations.PlusMinus0
2019-01-04Update sway-output.5.scdPlusMinus0
Some more clarifications because it seems scale questions are recurring.
2018-12-29sway-output(5): doc scaling consideration for posBrian Ashworth
This copies the information regarding positioning outputs when there is scaling involved from the wiki to sway-output(5).
2018-12-02fix typobschacht
tranform -> transform
2018-11-05Add relative output transformRyan Walklin
This commit enhances the output transform command with options for a relative transform, i.e. the provided transform will be applied as an offset to the current transform. Append `clockwise` to rotate clockwise from the current rotation, or `anticlockwise` to rotate in the opposite direction. For example, if the output LVDS-1 is rotated 90 degrees clockwise, the command `output LVDS-1 transform 90 clockwise` will rotate the display to 180 degrees. All transform options are supported, including flipped transforms. Relative transforms can only be applied to a single output and cannot be used with a wildcard (*) output specifier.
2018-10-25Document how to identify outputs by make, model and serialRyan Dwyer
2018-10-14Establish sway-output(5)Drew DeVault