Minor changes

merge-requests/64/head
Hugo Posnic 2016-12-18 12:06:15 +01:00
parent d36efc291d
commit 6d7781f053
2 changed files with 4 additions and 4 deletions

View File

@ -4,6 +4,6 @@ Type=Application
Categories=GNOME;GTK;System;
StartupNotify=false
Name=Manjaro Hello
Exec=/usr/bin/manjaro-hello.py
Exec=/usr/bin/manjaro-hello
Icon=/usr/share/icons/manjaro.png
Comment=Manjaro Hello is a tool that helps the new user of Manjaro in the discovery of the system.
Comment=A tool that helps the new user of Manjaro in the discovery of the system.

View File

@ -18,9 +18,9 @@ class ManjaroHello():
# Path vars
if os.path.basename(sys.argv[0]) == self.app:
self.data_path = "/usr/share/" + self.app + "/"
self.data_path = "/usr/share/" + self.app + "/data"/
self.locale_path = "/usr/share/locale/"
self.ui_path = "/usr/share/" + self.app + "/"
self.ui_path = "/usr/share/" + self.app + "/ui/"
self.desktop_path = "/usr/share/applications/" + self.app + ".desktop"
else:
self.current_folder = os.getcwd() + "/"