diff options
author | Mattias Andrée <maandree@kth.se> | 2016-12-01 11:13:52 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-12-01 11:13:52 +0100 |
commit | e328b52e46fada9de1e2d8f49668980a9f2760aa (patch) | |
tree | eaf26529f0d76011d9d61bed25c42703f6d78760 | |
parent | Add cg-rainbow.1 (diff) | |
download | cg-tools-e328b52e46fada9de1e2d8f49668980a9f2760aa.tar.gz cg-tools-e328b52e46fada9de1e2d8f49668980a9f2760aa.tar.bz2 cg-tools-e328b52e46fada9de1e2d8f49668980a9f2760aa.tar.xz |
Add cg-icc.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | man/cg-icc.1 | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/man/cg-icc.1 b/man/cg-icc.1 new file mode 100644 index 0000000..2f5dd34 --- /dev/null +++ b/man/cg-icc.1 @@ -0,0 +1,95 @@ +.TH CG-ICC 1 CG-TOOLS +.SH NAME +cg-icc - Apply ICC profiles to the monitors +.SH SYNOPSIS +.B cg-icc +.RB [ \-M +.IR method ] +.RB [ \-S +.IR site ] +.RB [ \-c +.IR crtc "]... ["\fB\-R\fP +.IR rule ] +.RB ( \-x +| +.RB [ \-p +.IR priority ] +.RB [ \-d ] +.RI [ file ]) +.SH DESCRIPTION +.B cg-icc +applies the ICC profile +.I file +to the monitors. If +.I file +is not specified, +.B cg-icc +reads a default ICC profile table file and applies +the appropriate profiles to each monitor, which as a +profile, independently. +.P +The file is 2 column text file where empty lines and lines +starting with a '#', after any whitespace, are ignored. The +first value is a monitor's EDID, and the second value is the +ICC file for that monitor. +.SH OPTIONS +.TP +.BR \-c " "\fIcrtc\fP +Apply the filter to the CRTC with the monitor whose EDID is +.IR crtc . +By default, the filter is applied to all monitors. +.TP +.B \-d +Keep the process alive and remove the filter on death. +.TP +.BR \-M " "\fImethod\fP +Adjustment method name or number. Recognised names include: + +.nf +\fBdummy\fP Dummy method +\fBrandr\fP X RAndR +\fBvidmode\fP X VidMode +\fBdrm\fP Linux DRM +\fBgdi\fP Windows GDI +\fBquartz\fP Quartz Core Graphics +.fi + +The adjustment methods are supported via +.BR libgamma (7). +Only methods that were enabled when +.B libgamma +was compiled will be supported. +.TP +.BR \-p " "\fIpriority\fP +Set the priority of the filter. Filters with lower priority +are applied before filters with higher priority. The value +must be a signed 64-bit integer (between -9223372036854775807 +and 9223372036854775808). +.BR cg-icc 's +default priority is 0. +.TP +.BR \-R " "\fIrule\fP +Set the rule of of the filter to +.IR rule . +This is the last part of the filter's identifier (class). +The default rule is +.BR standard . +.TP +.BR \-S " "\fIsite\fP +Select the site to which to connect. For example +.RB ' :0 ', +for local display 0 when using +.BR X . +.TP +.B \-x +Remove the currently applied filter. +.SH FILES +.TP +.B ~/.config/icctab +The default ICC profile table file. +.TP +.B /etc/icctab +The fallback ICC profile table file. +.SH BUGS +Please report bugs to https://github.com/maandree/cg-tools/issues +or to maandree@kth.se |