X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/81f1e56c835867f42af94c89f20a880d81ee5b22..19a90b1cacb47a7bbb42e4ac7c7746885f92ac38:/lilass diff --git a/lilass b/lilass index 02345f9..49dbeea 100755 --- a/lilass +++ b/lilass @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # DSL - easy Display Setup for Laptops # Copyright (C) 2012-2015 Ralf Jung # @@ -106,7 +106,7 @@ if __name__ == "__main__": frontend = gui.getFrontend(cmdArgs.frontend) # load configuration - config = loadConfigFile(os.getenv('HOME') + '/.dsl.conf') + config = loadConfigFile(os.getenv('HOME') + '/.lilass.conf') # see what situation we are in situation = situationByConfig(config) @@ -147,4 +147,3 @@ if __name__ == "__main__": turnOnBacklight() except Exception as e: frontend.error(str(e)) - raise