Fix bug in autostart path

merge-requests/64/head
Hugo Posnic 2016-12-18 14:02:37 +01:00
parent 8ced826f39
commit 52bc085681
1 changed files with 1 additions and 2 deletions

View File

@ -23,11 +23,10 @@ class ManjaroHello():
self.ui_path = "/usr/share/" + self.app + "/ui/"
self.desktop_path = "/usr/share/applications/" + self.app + ".desktop"
else:
self.current_folder = os.getcwd() + "/"
self.data_path = "data/"
self.locale_path = "locale/"
self.ui_path = "ui/"
self.desktop_path = self.current_folder[:-4] + self.app + ".desktop"
self.desktop_path = os.getcwd() + "/" + self.app + ".desktop"
self.config_path = os.path.expanduser("~") + "/.config/"
self.preferences_path = self.config_path + self.app + ".json"