<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/compicc/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 13 Dec 2016 09:08:20 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/compicc/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Kai-Uwe Behrmann</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kai-Uwe Behrmann</dc:creator><pubDate>Tue, 13 Dec 2016 09:08:20 -0000</pubDate><guid>https://sourceforge.netbf17e592a6373944f817702948b7947b4f7f4b2b</guid></item><item><title>Home modified by Kai-Uwe Behrmann</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,4 +1,4 @@
-[Releases moved to compiz-reloaded](https://github.com/compiz-reloaded/compicc)
+[Project moved to compiz-reloaded](https://github.com/compiz-reloaded/compicc)

 [[project_screenshots]]
 [[project_admins]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kai-Uwe Behrmann</dc:creator><pubDate>Tue, 13 Dec 2016 09:07:50 -0000</pubDate><guid>https://sourceforge.netc5029a80621e31fa3710433cdff2d9e761c1d92d</guid></item><item><title>Home modified by Kai-Uwe Behrmann</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,3 +1,5 @@
+[Releases moved to compiz-reloaded](https://github.com/compiz-reloaded/compicc)
+
 [[project_screenshots]]
 [[project_admins]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kai-Uwe Behrmann</dc:creator><pubDate>Tue, 13 Dec 2016 09:07:09 -0000</pubDate><guid>https://sourceforge.net878cfcce3b7a07de6f55c05069333574cd19a9fe</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;For apps, which do not support Xcm and yet work with wide-gamut images (darktable, Krita), it is worth to temporarily turn compicc off to avoid unwanted gamut shrinking (darktable wide gamut -&amp;gt; sRGB due to lack of support of Xcm -&amp;gt; wide gamut monitor).&lt;/p&gt;
&lt;p&gt;I wrote a simple python script to be used in a shell wrapper. Compizconfig python bindings must be installed (I have not found any documentation on that hence the result is just my best working bet):&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="c"&gt;#!/usr/bin/env python2.7&lt;/span&gt;
&lt;span class="c"&gt;# -*- coding: utf-8 -*-&lt;/span&gt;

&lt;span class="c"&gt;# mk_compicc-switcher.py      enables  compicc plugin&lt;/span&gt;
&lt;span class="c"&gt;# mk_compicc-switcher.py off  disables compicc plugin&lt;/span&gt;

&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;sys&lt;/span&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;compizconfig&lt;/span&gt;

&lt;span class="n"&gt;context&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;compizconfig&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Context&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="n"&gt;plugin&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;compizconfig&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Plugin&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;context&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;'compicc'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;sys&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;argv&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="o"&gt;==&lt;/span&gt;&lt;span class="s"&gt;"off"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
  &lt;span class="k"&gt;if&lt;/span&gt;     &lt;span class="n"&gt;plugin&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Enabled&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;plugin&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Enabled&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="bp"&gt;False&lt;/span&gt;
&lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
  &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="ow"&gt;not&lt;/span&gt; &lt;span class="n"&gt;plugin&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Enabled&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;plugin&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Enabled&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;

&lt;span class="n"&gt;context&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Write&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="nb"&gt;exit&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Milan Knizek</dc:creator><pubDate>Sat, 16 Aug 2014 07:44:41 -0000</pubDate><guid>https://sourceforge.netf1fdaf51bb7550b8ea7d50de94f4bce89da498b0</guid></item><item><title>Home modified by Kai-Uwe Behrmann</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,61 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/compicc/wiki/markdown_syntax/) syntax.
-
+[[project_screenshots]]
 [[project_admins]]
 [[download_button]]
+
+The Compiz ICC colour server, or short compicc, lets you colour manage your whole desktop at once and in hardware. Play movies, watch images on wide or narrow gamut displays. Each connected monitor is colour corrected for its own.
+
+CompICC is written to help the many colour management unaware applications. It takes them off any decision, what to do around monitor profiles. To do so CompICC does its work unquestioned. The result is a more consistent desktop.
+
+CompICC follows the opt out colour correction paradigm. Colour management unaware applications can continue to assume they are drawing in sRGB. They do not need any ICC profile nor any new library to do so. sRGB is the standard colour space for the internet. There are some applications, which want to do own colour corrections for displaying large gamut photos, proofing or monitor calibration. Those need to tell CompICC not to colour correct certain regions of their windows. This means slightly more work for aware applications to do advanced colour management other than sRGB.
+
+# Features
+
+Please see the [summary page](https://sourceforge.net/projects/compicc/).
+
+# Usage
+
+* enable compiz
+* open ccsm
+    * enable the colour management plug-in with the project icon under the workspace category
+    * the desktop should be colour managed
+
+* [README](http://compicc.git.sourceforge.net/git/gitweb.cgi?p=compicc/compicc;a=blob;f=README) has some more information
+
+The ICC profile can be changed with various tools like KolorManager or oyranos-monitor.
+
+# Download
+
+* [SourceForge](https://sourceforge.net/projects/compicc/files/) directories
+* [Oyranos Colour Management - openSUSE-12.1 64bit](https://sourceforge.net/projects/openicc/files/Demo/) LiveCD ~700MB CompIcc v0.8.x
+
+# Dependencies
+
+Version 0.8.9:
+
+* [Compiz 0.7.x - 0.8.x](http://releases.compiz.org/0.8.8/)
+* [Oyranos &gt;= 0.9.5 +](http://www.oyranos.org/wiki/index.php?title=Oyranos/Download#Dependencies)
+* [&gt;= libXcm-0.5.3](https://sourceforge.net/projects/oyranos/files/)
+* [Xcm-0.5.x](https://sourceforge.net/projects/oyranos/files/) optionally
+* ... some more Xorg development libraries
+
+# Development
+
+* [SouceForge page](https://sourceforge.net/projects/compicc/develop)
+
+A [Oyranos git](http://www.oyranos.org/wiki/index.php?title=Oyranos/git) download and build script covers as well CompIcc.
+
+# License
+
+[new BSD](https://sourceforge.net/projects/compicc/)
+
+# Problems
+
+To check correct working of the plug-in:
+
+* compiz is required to run
+* look if the _ICC_COLOR_DESKTOP atom is active
+    * tools like xcmsevents or qcmsevents will assist you, The QCmsEvents TrayIcon should be colourd
+* test with a test ICC profile like [FakeBRG.icc](http://www.oyranos.org/wiki/images/c/c0/FakeBRG.icc)
+* for a colorimetric verification use ArgyllCMS and a according color measurement device
+
+The ICC profile attached to each monitor can be checked with tools like KolorManager, ICC Examin or oyranos-monitor.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kai-Uwe Behrmann</dc:creator><pubDate>Tue, 20 May 2014 09:15:54 -0000</pubDate><guid>https://sourceforge.net0736a0dadd93cac675a0383fd2946cb217cb6885</guid></item><item><title>WikiPage Home modified by Kai-Uwe Behrmann</title><link>https://sourceforge.net/p/compicc/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/compicc/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;a href="/u/beku/"&gt;Kai-Uwe Behrmann&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span class="download-button-51191d9f34309d4b89bc55b7" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kai-Uwe Behrmann</dc:creator><pubDate>Mon, 11 Feb 2013 16:34:40 -0000</pubDate><guid>https://sourceforge.net24be55233904cb24a7ef7babacb977d66d41f7b9</guid></item></channel></rss>