aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-randr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use libgamma to determine available adjustment method configuration optionsMattias Andrée13 days1-26/+6
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Rewrite gamma-randr.c and gamma-vidmode.c to use libgammaMattias Andrée13 days1-368/+13
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Misc stuffMattias Andrée14 days1-0/+6
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* RefactorMattias Andrée2025-03-211-2/+11
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* RefactorMattias Andrée2025-03-161-39/+26
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Major refactoring and some fixesMattias Andrée2025-03-161-6/+5
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* styleMattias Andrée2025-03-081-6/+4
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Fix warningsMattias Andrée2025-03-081-1/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* miscMattias Andrée2025-03-081-1/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Misc improvementsMattias Andrée2025-03-071-19/+19
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* styleMattias Andrée2025-03-061-24/+18
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Update redshift to redshift-ngMattias Andrée2025-03-061-4/+4
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* style and some minor fixesMattias Andrée2025-03-061-15/+14
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* StyleMattias Andrée2025-03-061-118/+69
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Fix warningsMattias Andrée2025-03-051-0/+5
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Style and warningsMattias Andrée2025-03-051-52/+57
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Cleanup and style update (avoid typedef)Mattias Andrée2025-03-051-42/+25
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Unify header files (so far most)Mattias Andrée2025-03-051-3/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Merge branch 'coopgamma' of https://github.com/maandree/redshiftMattias Andrée2025-03-051-3/+3
|\
| * Add coopgamma backendMattias Andrée2016-12-191-3/+3
| | | | | | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* | Fix "Some translated strings are still in English" issueMasanori Kakura2018-08-291-0/+4
| | | | | | | | | | | | ENABLE_NLS is always undefined in some files and some translatable messages in these files are always displayed in English. This commit fixes the issue.
* | Change preserve option to command line switchJon Lund Steffensen2017-10-131-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes each adjustment method to take a preserve parameter when setting the temperature instead of parsing the preserve option from the command line/configuration file. This helps resolve the issues around #513: - This allows the preserve option to be implemented as a command-line switch (-P). This switch _disables_ the preservation of existing gamma ramps. Having a command-line switch makes it easier to use directly with manual or one-shot mode. - The preserve options is on by default, so continual mode as well as other modes will default to applying the color adjustment on top of the current gamma ramps. - Preserve is always disabled in reset mode so resetting works as expected again.
* | Move module structures out of headersJon Lund Steffensen2017-10-131-0/+19
| |
* | Allocate module data in init functionsJon Lund Steffensen2017-10-131-12/+20
| |
* | Move module struct definitions to separate filesJon Lund Steffensen2017-10-131-8/+20
| |
* | randr: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
| |
* | XRandR: Allow multiple but not all CRTCs to be redshiftedLennart Sauerbeck2017-01-081-8/+57
|/ | | | | | | | | | | | Previously only one CRTC could be set in the configuration file for redshifting when XRandR mechanism was being used. That is fine for a setup with two displays but breaks when three or more displays are in use and one of those shouldn't be redshifted (e.g. two computer displays and one TV connected to the computer). The config value 'crtc' for method xrandr can now be entered as comma separated list of multiple CRTCs. All CRTCs in the list will be redshifted while all those not in the list will not be touched.
* Remove trailing whitespacesMichael Vetter2015-08-041-1/+1
|
* randr: Add preserve option to RandR methodJon Lund Steffensen2015-01-041-8/+21
|
* colorramp: Use supplied gamma ramps as initial valueJon Lund Steffensen2015-01-041-0/+8
| | | | | | | | | This changes colorramp_fill() to base the ramp calculations on the existing values in the supplied tables, instead of basing it on a pure `i/size` value computed on the fly. All gamma adjustment methods are changed to explicitly initialize the ramps to the `i/size` value before calls to colorramp_fill().
* redshift: Simplify set_temperature by passing color_setting_tJon Lund Steffensen2014-12-271-9/+9
| | | | | | | | Changes all set_temperature function in gamma adjustment methods to take a color_setting_t pointer with the color settings. Colorramp functions are similarly changed to take a color settings struct.
* Do not allow NULL keys when setting optionsJon Lund Steffensen2013-12-091-6/+0
| | | | | | | This should fix a bug where command line options for the "manual" location provider cannot override the config file. To keep compatability with previous versions the command line parser will still special case parsing "-l LAT:LON" and set the correct options in "manual".
* Constify gamma parameter to set_temperature() methodsJon Lund Steffensen2013-12-091-2/+2
|
* Fix randr version check (Alisdair Tullo).Jon Lund Steffensen2011-07-041-1/+1
|
* Allow brightness to be adjusted (between 10% and 100%, the latter being the default).Jon Lund Steffensen2011-04-211-5/+7
|
* gamma-randr.c: Apparently error and ver_reply can both be NULL. Check both toJon Lund Steffensen2010-08-181-2/+5
| | | | avoid seg faults.
* Add comments about certain substring which must not be translated.Jon Lund Steffensen2010-06-101-0/+2
| | | | Fix help text that refered to the wrong command line parameter.
* Split init function of methods and providers into init and start.Jon Lund Steffensen2010-05-271-48/+41
| | | | | The set_option function can be called to set options between init and start.
* Let gamma methods and location providers print help on option parameters.Jon Lund Steffensen2010-05-271-0/+11
|
* Use the prefix 'gamma' for gamma adjustment source files.Jon Lund Steffensen2010-05-241-0/+367