summaryrefslogtreecommitdiff
path: root/weston.ini
AgeCommit message (Collapse)AuthorFilesLines
2013-05-14Add a colord implementation of a CMS plugin for westonRichard Hughes1-1/+1
This allows users to change the assigned display profile in GNOME (using gnome-control-center) or KDE (using colord-kde) and also allows the profiling tools to correctly inhibit the calibration state whilst measuring the native screen response.
2013-05-10Add initial color management framework codeRichard Hughes1-1/+2
ICC profiles can now be specified in weston.ini for each output, or a CMS implementation can optionally loaded from a pluggable module.
2013-05-01weston.ini: document background-typeEmilio Pozuelo Monfort1-0/+1
2013-03-19Revert "weston.ini: Use 'modeline' key for modeline example"Scott Moreau1-1/+1
This reverts commit 97a56145636316fdb431b91ec64adff217287cd9. The current code detects the mode key, not modeline. Reference: http://cgit.freedesktop.org/wayland/weston/tree/src/compositor-drm.c#n2464
2013-03-19config.ini: add examples for cursor-theme and cursor-sizeEmilio Pozuelo Monfort1-0/+2
2013-02-18weston.ini: Use 'modeline' key for modeline exampleKristian Høgsberg1-1/+1
When specifying a modeline, use the modeline key. Make the example weston.ini do that.
2012-11-27weston.ini: Introduce core section and remove type keys.Scott Moreau1-2/+3
Since a6813d288, there is no longer a "type" key in the [shell] config section. Instead the code accepts a [core] section with a modules key, containing a comma separated list of modules to load. This patch removes the type keys and adds a core section in the example weston.ini config file.
2012-11-27text: Start input method from configurationJan Arne Petersen1-0/+3
Start the input method specified in the weston.ini configuration file. Signed-off-by: Jan Arne Petersen <jpetersen@openismus.com>
2012-08-31Add sample configuration for workspaces to weston.iniJonas Ådahl1-0/+1
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2012-08-29Implement output transformations.Scott Moreau1-0/+3
This patch allows rotation and mirroring outputs for x11 and drm backends. A new 'transform' key can be set in the [output] section. From the protocol: "The flipped values correspond to an initial flip around a vertical axis followed by rotation." The transform key can be one of the following 8 strings: normal 90 180 270 flipped flipped-90 flipped-180 flipped-270
2012-08-16Correct mistake in config file.Scott Moreau1-2/+1
2012-08-03compositor-x11: Allow output configuration from config file.Scott Moreau1-0/+5
This patch provides a way to define outputs for the x11 backend. It parses [output] sections and checks for 'name' and 'mode' keys. The 'name' must start with an 'X' to distinguish from drm output names. Command line options --width and --height supersede what is in the config file. When --output-count is passed, the number of outputs are limited or additional outputs added with default values.
2012-07-31Add raw modeline support.Scott Moreau1-2/+2
This allows specifying a modeline in the config for the 'mode' key in the output section, such as one you would get from cvt.
2012-07-30Allow output configuration from config file.Scott Moreau1-5/+6
Parse the config file for [output] sections and check for 'name' and 'mode' keys. The key strings are compared to what is reported by weston log. The 'mode' key string can be one of the following: 1) WIDTHxHEIGHT - one that is reported by weston log 2) off - Disables the output 3) preferred - Uses the preferred mode 4) current - Uses the mode currently driving the crtc
2012-07-26compositor-drm: Look through all crtc/encoder combinationsKristian Høgsberg1-0/+8
We used to only check the first possible encoder, now we go through all possible encoders and look through all possible crtcs for each encoder.
2012-07-22weston.ini: Move binding-modifier to shell section.Scott Moreau1-1/+1
The variable has no effect as part of the screensaver section.
2012-06-25Install screensaver by defaultKristian Høgsberg1-1/+2
2012-04-25shell-animation: add conf option in shellJuan Zhao1-0/+2
Now we can choose zoom or fade in weston.ini to fulfill and customize the user experence easier. Signed-off-by: Juan Zhao <juan.j.zhao@intel.com>
2012-04-20shell: modifier bindings configurableTiago Vignatti1-1/+1
This patch makes the main modifier configurable. We used to hardcode super (windows key) for most bindings, but now that can be changed. The change affects two key bindings: rotation moves to mod+right click and backlight moves to from ctrl+f9/f10 to mod+f9/f10. Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>
2012-03-25config-parser: consolidate shell files into weston.ini onlyTiago Vignatti1-0/+31
The shell choice happens in the configuration file now. Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>