diff options
author | Versus Void <versusvoid@gmail.com> | 2017-10-02 15:17:35 +0300 |
---|---|---|
committer | Versus Void <versusvoid@gmail.com> | 2017-10-02 15:17:35 +0300 |
commit | 84de02986a1a913113dbf0e66af264795b7a40d8 (patch) | |
tree | bad34131cdbf8aef290e0aafdb783ffb8e3cc285 /examples/wlr-example.ini.example | |
parent | aa8a4f12b7e7ea8c3a1876f0585dd6171f8cb705 (diff) |
Add examples/wlr-example.ini.example with option descriptions for examples
Diffstat (limited to 'examples/wlr-example.ini.example')
-rw-r--r-- | examples/wlr-example.ini.example | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/wlr-example.ini.example b/examples/wlr-example.ini.example new file mode 100644 index 00000000..58e5816b --- /dev/null +++ b/examples/wlr-example.ini.example @@ -0,0 +1,26 @@ +# Single output configuration. String after semicolon must match output's name. +[output:VGA-1] +# Set logical (layout) coordinates for this screen +x = 1920 +y = 0 + +# Screen transformation +# possible values are: +# '90', '180' or '270' - rotate output by specified angle clockwise +# 'flipped' - flip output horizontally +# 'flipped-90', 'flipped-180', 'flipped-270' - flip output horizontally +# and rotate by specified angle +rotate = 90 + +[cursor] +# Restrict cursor movements to single output +map-to-output = VGA-1 +# Restrict cursor movements to concrete rectangle +geometry = 2500x800 + +# Single device configuration. String after semicolon must match device's name. +[device:PixArt Dell MS116 USB Optical Mouse] +# Restrict cursor movements for this mouse to single output +map-to-output = VGA-1 +# Restrict cursor movements for this mouse to concrete rectangle +geometry = 2500x800 |