]> git.sur5r.net Git - i3/i3.github.io/blob - docs/4.13/multi-monitor.html
save docs for 4.13
[i3/i3.github.io] / docs / 4.13 / multi-monitor.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"\r
2     "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\r
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">\r
4 <head>\r
5 <link rel="icon" type="image/x-icon" href="/favicon.ico">\r
6 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />\r
7 <meta name="generator" content="AsciiDoc 8.6.9" />\r
8 <title>i3: The multi-monitor situation</title>\r
9 <link rel="stylesheet" href="/css/style.css" type="text/css" />\r
10 <link rel="stylesheet" href="/css/xhtml11.css" type="text/css" />\r
11 <script type="text/javascript">\r
12 /*<![CDATA[*/\r
13 document.addEventListener("DOMContentLoaded", function(){asciidoc.footnotes(); asciidoc.toc(2);}, false);\r
14 /*]]>*/\r
15 </script>\r
16 <script type="text/javascript" src="/js/asciidoc-xhtml11.js"></script>\r
17 </head>\r
18 <body class="article">\r
19 \r
20         <div id="main">\r
21             <a href="/"><h1 id="title">i3 - improved tiling WM</h1></a>\r
22                         <ul id="nav">\r
23                                 <li><a style="border-bottom: 2px solid #fff" href="/docs">Docs</a></li>\r
24                                 <li><a href="/screenshots">Screens</a></li>\r
25                                 <li><a href="https://www.reddit.com/r/i3wm/">FAQ</a></li>\r
26                                 <li><a href="/contact">Contact</a></li>\r
27                                 <li><a href="https://github.com/i3/i3/issues">Bugs</a></li>\r
28                         </ul>\r
29         <br style="clear: both">\r
30 <div id="content">\r
31 <div id="header">\r
32 <h1>The multi-monitor situation</h1>\r
33 <span id="author">Michael Stapelberg</span><br />\r
34 <span id="email"><tt>&lt;<a href="mailto:michael@i3wm.org">michael@i3wm.org</a>&gt;</tt></span><br />\r
35 <span id="revdate">April 2013</span>\r
36 <div id="toc">
37   <div id="toctitle">Table of Contents</div>
38   <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
39 </div>\r
40 </div>\r
41 <div id="preamble">\r
42 <div class="sectionbody">\r
43 <div class="paragraph"><p>Please upgrade your nVidia driver to version 302.17 or newer and i3 will just\r
44 work. This document is kept around for historic reasons only.</p></div>\r
45 </div>\r
46 </div>\r
47 <div class="sect1">\r
48 <h2 id="_the_quick_fix">1. The quick fix</h2>\r
49 <div class="sectionbody">\r
50 <div class="paragraph"><p>If you are using the nVidia binary graphics driver (also known as <em>blob</em>)\r
51 before version 302.17, you need to use the <tt>--force-xinerama</tt> flag (in your\r
52 .xsession) when starting i3, like so:</p></div>\r
53 <div class="listingblock">\r
54 <div class="title">Example:</div>\r
55 <div class="content">\r
56 <pre><tt>exec i3 --force-xinerama -V &gt;&gt;~/.i3/i3log 2&gt;&amp;1</tt></pre>\r
57 </div></div>\r
58 <div class="paragraph"><p>…or use <tt>force_xinerama yes</tt> in your configuration file.</p></div>\r
59 </div>\r
60 </div>\r
61 <div class="sect1">\r
62 <h2 id="_the_explanation">2. The explanation</h2>\r
63 <div class="sectionbody">\r
64 <div class="paragraph"><p>Starting with version 3.ε, i3 uses the RandR (Rotate and Resize) API instead\r
65 of Xinerama. The reason for this, is that RandR provides more information\r
66 about your outputs and connected screens than Xinerama does. To be specific,\r
67 the code which handled on-the-fly screen reconfiguration (meaning without\r
68 restarting the X server) was a very messy heuristic and most of the time did\r
69 not work correctly&#8201;&#8212;&#8201;that is just not possible with the little information\r
70 Xinerama offers (just a list of screen resolutions, no identifiers for the\r
71 screens or any additional information). Xinerama simply was not designed\r
72 for dynamic configuration.</p></div>\r
73 <div class="paragraph"><p>So RandR came along, as a more powerful alternative (RandR 1.2 to be specific).\r
74 It offers all of Xinerama’s possibilities and lots more. Using the RandR API\r
75 made our code much more robust and clean. Also, you can now reliably assign\r
76 workspaces to output names instead of some rather unreliable screen identifier\r
77 (position inside the list of screens, which could change, and so on…).</p></div>\r
78 <div class="paragraph"><p>As RandR has been around for about three years as of this writing, it seemed\r
79 like a very good idea to us, and it still is a very good one. What we did not\r
80 expect, however, was the nVidia binary driver. It still does not support RandR\r
81 (as of March 2010), even though nVidia has announced that it will support RandR\r
82 eventually. What does this mean for you, if you are stuck with the binary\r
83 driver for some reason (say the free drivers don’t work with your card)? First\r
84 of all, you are stuck with TwinView and cannot use <tt>xrandr</tt>. While this ruins\r
85 the user experience, the more grave problem is that the nVidia driver not only\r
86 does not support dynamic configuration using RandR, it also does not expose\r
87 correct multi-monitor information via the RandR API. So, in some setups, i3\r
88 will not find any screens; in others, it will find one large screen which\r
89 actually contains both of your physical screens (but it will not know that\r
90 these are two screens).</p></div>\r
91 <div class="paragraph"><p>For this very reason, we decided to implement the following workaround: As\r
92 long as the nVidia driver does not support RandR, an option called\r
93 <tt>--force-xinerama</tt> is available in i3 (alternatively, you can use the\r
94 <tt>force_xinerama</tt> configuration file directive). This option gets the list of\r
95 screens <strong>once</strong> when starting, and never updates it. As the nVidia driver cannot\r
96 do dynamic configuration anyways, this is not a big deal.</p></div>\r
97 <div class="paragraph"><p>Also note that your output names are not descriptive (like <tt>HDMI1</tt>) when using\r
98 Xinerama, instead they are counted up, starting at 0: <tt>xinerama-0</tt>, <tt>xinerama-1</tt>, …</p></div>\r
99 </div>\r
100 </div>\r
101 <div class="sect1">\r
102 <h2 id="_see_also">3. See also</h2>\r
103 <div class="sectionbody">\r
104 <div class="paragraph"><p>For more information on how to use multi-monitor setups, see the i3 User’s\r
105 Guide.</p></div>\r
106 </div>\r
107 </div>\r
108 </div>\r
109 <div id="footnotes"><hr /></div>\r
110 <div id="footer" lang="de">\r
111 © 2009-2011 Michael Stapelberg, <a href="/impress.html">Impressum</a>\r
112 </div>\r
113 </body>\r
114 </html>\r