X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/4adba90eb31a8d517215ee89b9b4e94b1d2bf6dd..6895277c1f24aa9381822a0cbb20259b97cd075f:/dsl.py diff --git a/dsl.py b/dsl.py index fd7f108..1c4ec1e 100755 --- a/dsl.py +++ b/dsl.py @@ -17,12 +17,17 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. import os, re, subprocess -from selector_window import PositionSelection import gui # for auto-config: common names of internal connectors commonInternalConnectorNames = ['LVDS', 'LVDS0', 'LVDS1', 'LVDS-0', 'LVDS-1'] +# this is as close as one can get to an enum in Python +class RelativeScreenPosition: + LEFT = 0 + RIGHT = 1 + EXTERNAL_ONLY = 2 + # Load a section-less config file: maps parameter names to space-separated lists of strings (with shell quotation) def loadConfigFile(file): import shlex @@ -70,7 +75,9 @@ def getXrandrInformation(): connectors[connector].append((int(m.groups()[0]), int(m.groups()[1]))) continue # unknown line - raise Exception("Unknown line in xrandr output:\n"+line) + # not fatal as my xrandr shows strange stuff when a display is enabled, but not connected + #raise Exception("Unknown line in xrandr output:\n"+line) + print "Warning: Unknown xrandr line %s" % line # be sure to always proprly finish up with the xrandr p.communicate() # if everything succeededso far, check return code @@ -140,25 +147,25 @@ def main(): if usedExternalConnector is not None: # there's an external screen connected, we need to ask what to do internalResolutions = connectors[internalConnector] externalResolutions = connectors[usedExternalConnector] - extPosition = PositionSelection(usedExternalConnector, map(res2user, internalResolutions), map(res2user, externalResolutions)) - extPosition.exec_() - if not extPosition.result(): sys.exit(1) # the user canceled - extResolution = res2xrandr(externalResolutions[extPosition.extResolutions.currentIndex()]) - intResolution = res2xrandr(internalResolutions[extPosition.intResolutions.currentIndex()]) + dialogue = gui.getDialogue(usedExternalConnector, map(res2user, internalResolutions), map(res2user, externalResolutions)) + if not dialogue.run(): sys.exit(1) # the user canceled + extResolution = res2xrandr(externalResolutions[dialogue.getExtResolutionIndex()]) + intResolution = res2xrandr(internalResolutions[dialogue.getIntResolutionIndex()]) + relPosition = dialogue.getRelativeScreenPosition() # build command-line args[usedExternalConnector] = ["--mode", extResolution] # set external screen to desired resolution - if extPosition.extOnly.isChecked(): + if relPosition == RelativeScreenPosition.EXTERNAL_ONLY: args[usedExternalConnector] += ["--primary"] else: # there are two screens args[internalConnector] = ["--mode", intResolution] # set internal screen to desired resolution # set position - if extPosition.posLeft.isChecked(): + if relPosition == RelativeScreenPosition.LEFT: args[usedExternalConnector] += ["--left-of", internalConnector] else: args[usedExternalConnector] += ["--right-of", internalConnector] # set primary screen - if extPosition.primExt.isChecked(): + if dialogue.externalIsPrimary(): args[usedExternalConnector] += ["--primary"] else: args[internalConnector] += ["--primary"]