diff options
-rw-r--r-- | qml/mageiawelcome.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qml/mageiawelcome.py b/qml/mageiawelcome.py index e5aea47..a76d8aa 100644 --- a/qml/mageiawelcome.py +++ b/qml/mageiawelcome.py @@ -128,7 +128,7 @@ class Norun(QObject): def __init__(self): QObject.__init__(self) self.home = os.getenv("HOME") - self.conffile = self.home + "/.config/mageiawelcome/norun.flag" + self.conffile = self.home + "/.mageiawelcome/norun.flag" @pyqtSlot(bool) def setRunAtLaunch(self, checked): @@ -137,7 +137,7 @@ class Norun(QObject): if os.path.exists(self.conffile): os.remove( self.conffile) else: - os.makedirs(self.home + "/.config/mageiawelcome", exist_ok=True) + os.makedirs(self.home + "/.mageiawelcome", exist_ok=True) with open( self.conffile, 'w') : pass |