2 # DSL - easy Display Setup for Laptops
3 # Copyright (C) 2012-2015 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; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 import argparse, sys, os, os.path, shutil, re, subprocess
21 import gui, screen, util
22 frontend = gui.getFrontend("cli") # the fallback, until we got a proper frontend. This is guaranteed to be available.
25 # for auto-config: common names of internal connectors
26 commonInternalConnectorPrefixes = ['LVDS', 'eDP']
27 commonInternalConnectorSuffices = ['', '0', '1', '-0', '-1']
28 def commonInternalConnectorNames():
29 for prefix in commonInternalConnectorPrefixes:
30 for suffix in commonInternalConnectorSuffices:
33 # Load a section-less config file: maps parameter names to space-separated lists of strings (with shell quotation)
34 def loadConfigFile(filename):
37 if not os.path.exists(filename):
38 return result # no config file
41 with open(filename) as f:
45 if not len(line) or line.startswith("#"): continue # skip empty and comment lines
48 pos = line.index("=") # will raise exception when substring is not found
49 curKey = line[:pos].strip()
50 result[curKey] = shlex.split(line[pos+1:]) # shlex.split also strips
52 raise Exception("Invalid config, line %d: Error parsing line (may be a quoting issue)." % linenr)
53 # add some convencience get functions
57 # Make sure the backlight is turned on
58 def turnOnBacklight():
60 backlight = float(subprocess.check_output(["xbacklight", "-get"]).strip())
61 if backlight == 0: # it's completely turned off, we better enable it
62 subprocess.check_call(["xbacklight", "-set", "100"])
63 except FileNotFoundError:
64 print("xbacklight has not been found, unable to turn your laptop backlight on.")
65 except subprocess.CalledProcessError:
66 print("xbacklight returned an error while attempting to turn your laptop backlight on.")
69 # return the current sceen situation, using the configuration to control connecor detection
70 def situationByConfig(config):
72 if 'internalConnector' in config:
73 if len(config['internalConnector']) != 1:
74 raise Exception("You must specify exactly one internal connector.")
75 internalConnectors = config['internalConnector']
77 internalConnectors = commonInternalConnectorNames()
79 return screen.ScreenSituation(internalConnectors, config.get('externalConnectors'))
83 if __name__ == "__main__":
85 # how do we filter the RelativeScreenPosition for the CLI?
86 relPosFilter = str.lower
88 # parse command-line arguments
89 parser = argparse.ArgumentParser(description='easy Display Setup for Laptops')
90 parser.add_argument("-f", "--frontend",
92 help="The frontend to be used for user interaction")
93 parser.add_argument("-r", "--relative-position",
94 dest="rel_position", choices=list(map(relPosFilter, screen.RelativeScreenPosition.__members__.keys())),
95 help="Set the position of external screen relative to internal one.")
96 parser.add_argument("-e", "--external-only",
97 dest="external_only", action='store_true',
98 help="If an external screen is connected, disable all the others.")
99 parser.add_argument("-i", "--internal-only",
100 dest="internal_only", action='store_true',
101 help="Enable internal screen, disable all the others.")
102 cmdArgs = parser.parse_args()
104 # load frontend early (for error mssages)
105 frontend = gui.getFrontend(cmdArgs.frontend)
108 legacyConfigFilePath = os.getenv('HOME') + '/.lilass.conf'
109 configDirectory = util.getConfigDirectory()
110 configFilePath = os.path.join(configDirectory, "lilass.conf")
111 if os.path.isfile(legacyConfigFilePath) and not os.path.isfile(configFilePath):
112 # looks like we just upgraded to a new version of lilass
113 util.mkdirP(configDirectory)
114 shutil.move(legacyConfigFilePath, configFilePath)
115 config = loadConfigFile(configFilePath)
117 # see what situation we are in
118 situation = situationByConfig(config)
120 # construct the ScreenSetup
122 if not cmdArgs.internal_only and situation.externalResolutions() is not None:
123 # there's an external screen connected that we may want to use
124 if cmdArgs.external_only:
125 setup = screen.ScreenSetup(intResolution = None, extResolution = situation.externalResolutions()[0])
126 elif cmdArgs.rel_position is not None:
127 # construct automatically, based on CLI arguments
128 # first, figure out the desired RelativeScreenPosition... waht a bad hack...
129 relPos = list(filter(lambda relPosItem: relPosFilter(relPosItem[0]) == cmdArgs.rel_position, screen.RelativeScreenPosition.__members__.items()))
130 assert len(relPos) == 1, "CLI argument is ambigue"
131 relPos = relPos[0][1]
132 # now we construct the ScreenSetup
133 if relPos == screen.RelativeScreenPosition.MIRROR:
134 res = situation.commonResolutions()[0]
135 setup = screen.ScreenSetup(res, res, relPos)
137 setup = screen.ScreenSetup(intResolution = situation.internalResolutions()[0], extResolution = situation.externalResolutions()[0], relPosition = relPos)
140 setup = frontend.setup(situation)
141 if setup is None: sys.exit(1) # the user canceled
143 # use first resolution of internal connector
144 setup = screen.ScreenSetup(intResolution = situation.internalConnector.getResolutionList()[0], extResolution = None)
147 xrandrCall = situation.forXrandr(setup)
148 print("Call that will be made:",xrandrCall)
149 subprocess.check_call(xrandrCall)
151 # make sure the internal screen is really, *really* turned on if there is no external screen
152 if setup.extResolution is None:
154 except Exception as e:
156 frontend.error(str(e))