aboutsummaryrefslogtreecommitdiffstats
path: root/sway/sway-output.5.scd
Commit message (Collapse)AuthorAge
* man: document that the scale might be adjustedLibravatar Simon Ser2024-03-14
| | | | | | fractional-scale only supports representing fractions of 120. References: https://github.com/swaywm/sway/issues/8057
* man: drop fractional scale warningLibravatar Simon Ser2024-03-14
| | | | | With the fractional-scale protocol, clients can render without being downscaled.
* man: fix typo in output disable docsLibravatar Simon Ser2023-01-03
|
* sway-output.5: improve display of parameterLibravatar Martin Michlmayr2022-08-08
| | | | Since "width" and "height" are separate parameters, show them as such.
* Rename dpms output command to powerLibravatar Simon Ser2022-06-23
| | | | | | | | The "dpms" command refers to VESA Display Power Management Signaling, a deprecated standard. It's superseded by VESA DPM. Instead of tying out command name to a particular standard, use the neutral term "power".
* Add 'output render_bit_depth [8|10]' commandLibravatar Manuel Stoeckl2021-11-23
| | | | | | | This makes it possible to hint to the renderer and backends how many bits per channel the buffers that the compositor draws windows onto should have. Renderers and backends may deviate from this if they do not support the formats with higher bit depth.
* Add `output modeline` commandLibravatar David Rosca2021-08-31
| | | | Only works with DRM backend.
* fix typo in sway-output.5.scdLibravatar Rahiel Kasim2021-06-13
|
* Add toggle logic inside DPMS handlerLibravatar Ivan Fedotov2021-03-25
| | | | | | | | | | | Logic that obtains current DPMS state is put inside the handler. sway_output from which the current DPMS state will be obtained is selected by the following logic: * For '-' and '--' the focused output is used; * For '*' error "Cannot apply toggle to all outputs" is reported; * For everything else all_output_by_name_or_id() is used. Fixes #5929.
* Simplify repaint scheduling documentationLibravatar Kenny Levinsen2020-05-11
| | | | | | | The current documentation for repaint scheduling is very technical and somewhat confusing. Closes: https://github.com/swaywm/sway/issues/4769
* Correct typo in sway-output.5.scdLibravatar Ejez2020-04-29
|
* Restrict relative output transforms to runtime changesLibravatar Simon Ser2020-04-21
| | | | | | | | Prevent them from being used in the config file. This is a breaking config file change. References: https://github.com/swaywm/sway/issues/5236
* Fix output mode usageLibravatar Simon Ser2020-03-21
| | | | The "Hz" part is required.
* Add an adaptive_sync output commandLibravatar Simon Ser2020-03-07
| | | | | | | | | 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.
* Specify that output transform applies clockwise rotationsLibravatar Simon Ser2020-02-17
|
* integer scaling, not integralLibravatar Cassandra McCarthy2020-01-10
|
* add scale_filter output config optionLibravatar Ronan Pigott2019-11-29
|
* Add note about backends to output max_render_timeLibravatar Ivan Molodetskikh2019-11-17
|
* view: add max_render_timeLibravatar Ivan Molodetskikh2019-11-17
|
* output: add max_render_timeLibravatar Ivan Molodetskikh2019-11-17
|
* Add --custom to `output mode` commandLibravatar Simon Ser2019-11-04
| | | | This forces to set the mode as a custom mode.
* Fix syntax in examples in sway-output(5)Libravatar Arkadiusz Hiler2019-10-02
| | | | | | | | 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.
* sway-output.5: fix variable nameLibravatar Martin Michlmayr2019-09-11
| | | | | __foo__ is verbatim in scdoc, but we want the variable foo in italic, i.e. _foo_.
* cmd_output: support current output aliasLibravatar Brian Ashworth2019-07-17
| | | | | | | | 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.
* Implement output toggleLibravatar Moelf2019-05-14
| | | | discussed in #4136, this can't handle wildcard but won't crash.
* Add support for manually setting subpixel hinting on outputs.Libravatar Geoff Greer2019-03-24
| | | | | | 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
* Add output dpms to manpageLibravatar emersion2019-02-27
|
* Document cursor moving between adjacent outputsLibravatar Peter Grayson2019-01-28
| | | | | | | | | 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>
* Remove unnecessary underscores in man pagesLibravatar Drew DeVault2019-01-27
|
* Fixed formulations.Libravatar PlusMinus02019-01-04
|
* Update sway-output.5.scdLibravatar PlusMinus02019-01-04
| | | Some more clarifications because it seems scale questions are recurring.
* sway-output(5): doc scaling consideration for posLibravatar Brian Ashworth2018-12-29
| | | | | This copies the information regarding positioning outputs when there is scaling involved from the wiki to sway-output(5).
* fix typoLibravatar bschacht2018-12-02
| | | tranform -> transform
* Add relative output transformLibravatar Ryan Walklin2018-11-05
| | | | | | | | | | | | | | | | | | | | | 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.
* Document how to identify outputs by make, model and serialLibravatar Ryan Dwyer2018-10-25
|
* Establish sway-output(5)Libravatar Drew DeVault2018-10-14