2 # DSL - easy Display Setup for Laptops
3 # Copyright (C) 2012 Ralf Jung <post@ralfj.de>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program (gpl.txt); if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 import os, re, subprocess
20 from selector_window import PositionSelection
23 # for auto-config: common names of internal connectors
24 commonInternalConnectorNames = ['LVDS', 'LVDS0', 'LVDS1', 'LVDS-0', 'LVDS-1']
26 # Load a section-less config file: maps parameter names to space-separated lists of strings (with shell quotation)
27 def loadConfigFile(file):
30 if not os.path.exists(file):
31 return result # no config file
34 with open(file) as file:
38 if not len(line) or line.startswith("#"): continue # skip empty and comment lines
41 pos = line.index("=") # will raise exception when substring is not found
42 curKey = line[:pos].strip()
43 result[curKey] = shlex.split(line[pos+1:]) # shlex.split also strips
45 raise Exception("Invalid config, line %d: Error parsing line (quoting issue?)." % linenr)
46 # add some convencience get functions
49 def getXrandrInformation():
50 p = subprocess.Popen(["xrandr", "-q"], stdout=subprocess.PIPE)
51 connectors = {} # map of connector names to a list of resolutions
52 connector = None # current connector
55 m = re.search(r'^Screen [0-9]+: ', line)
56 if m is not None: # ignore this line
60 m = re.search(r'^([\w\-]+) (dis)?connected ', line)
62 connector = m.groups()[0]
63 assert connector not in connectors
64 connectors[connector] = []
67 m = re.search(r'^ ([\d]+)x([\d]+) +', line)
69 assert connector is not None
70 connectors[connector].append((int(m.groups()[0]), int(m.groups()[1])))
73 raise Exception("Unknown line in xrandr output:\n"+line)
74 # be sure to always proprly finish up with the xrandr
76 # if everything succeededso far, check return code
77 if p.returncode != 0: raise Exception("Querying xrandr for data failed.")
82 return str(w)+'x'+str(h)
87 ratio = int(round(16.0*h/w))
88 if ratio == 12: # 16:12 = 4:3
90 elif ratio == 13: # 16:12.8 = 5:4
92 else: # let's just hope this will never be 14 or more...
93 strRatio = '16:%d' % ratio
94 return '%dx%d (%s)' %(w, h, strRatio)
96 def findAvailableConnector(tryConnectors, allConnectors):
97 for connector in tryConnectors:
98 if connector in allConnectors and allConnectors[connector]: # if the connector exists and is active (i.e. there is a resolution)
104 # load connectors and options
105 connectors = getXrandrInformation()
106 config = loadConfigFile(os.getenv('HOME') + '/.dsl.conf')
107 # find internal connector
108 if 'internalConnector' in config:
109 if len(config['internalConnector']) != 1:
110 raise Exception("You must specify exactly one internal connector.")
111 internalConnector = config['internalConnector'][0]
112 if not internalConnector in connectors:
113 raise Exception("Connector %s does not exist, there is an error in your config file." % internalConnector)
116 internalConnector = findAvailableConnector(commonInternalConnectorNames, connectors)
117 if internalConnector is None:
118 raise Exception("Could not automatically find internal connector, please use ~/.dsl.conf to specify it manually.")
119 # all the rest is external then, obviously - unless the user wants to do that manually
120 if 'externalConnectors' in config:
121 externalConnectors = config['externalConnectors']
122 for connector in externalConnectors:
123 if not connector in connectors:
124 raise Exception("Connector %s does not exist, there is an error in your config file." % connector)
125 if connector == internalConnector:
126 raise Exception("%s is both internal and external, that doesn't make sense." % connector)
128 externalConnectors = connectors.keys()
129 externalConnectors.remove(internalConnector)
130 if not externalConnectors:
131 raise Exception("No external connector found - either your config is wrong, or your machine has only one connector.")
133 # default: screen off
134 args = {} # maps connector names to xrand arguments
135 for c in externalConnectors+[internalConnector]:
139 usedExternalConnector = findAvailableConnector(externalConnectors, connectors) # *the* external connector which is actually used
140 if usedExternalConnector is not None: # there's an external screen connected, we need to ask what to do
141 internalResolutions = connectors[internalConnector]
142 externalResolutions = connectors[usedExternalConnector]
143 extPosition = PositionSelection(usedExternalConnector, map(res2user, internalResolutions), map(res2user, externalResolutions))
145 if not extPosition.result(): sys.exit(1) # the user canceled
146 extResolution = res2xrandr(externalResolutions[extPosition.extResolutions.currentIndex()])
147 intResolution = res2xrandr(internalResolutions[extPosition.intResolutions.currentIndex()])
149 args[usedExternalConnector] = ["--mode", extResolution] # set external screen to desired resolution
150 if extPosition.extOnly.isChecked():
151 args[usedExternalConnector] += ["--primary"]
153 # there are two screens
154 args[internalConnector] = ["--mode", intResolution] # set internal screen to desired resolution
156 if extPosition.posLeft.isChecked():
157 args[usedExternalConnector] += ["--left-of", internalConnector]
159 args[usedExternalConnector] += ["--right-of", internalConnector]
161 if extPosition.primExt.isChecked():
162 args[usedExternalConnector] += ["--primary"]
164 args[internalConnector] += ["--primary"]
166 # use first resolution
167 args[internalConnector] = ["--mode", res2xrandr(connectors[internalConnector][0]), "--primary"]
171 call += ["--output", name] + args[name]
172 print "Call that will be made:",call
173 subprocess.check_call(call)
175 # if we run top-level
176 if __name__ == "__main__":
179 except Exception as e: