Add a var for installer path
This commit is contained in:
@@ -21,6 +21,7 @@ class ManjaroHello():
|
|||||||
version = "17"
|
version = "17"
|
||||||
live_path = "/run/miso/bootmnt/manjaro"
|
live_path = "/run/miso/bootmnt/manjaro"
|
||||||
logo_path = "/usr/share/icons/hicolor/64x64/apps/manjaro.png"
|
logo_path = "/usr/share/icons/hicolor/64x64/apps/manjaro.png"
|
||||||
|
installer_path = "/usr/bin/calamares"
|
||||||
self.default_locale = "en"
|
self.default_locale = "en"
|
||||||
|
|
||||||
# App vars
|
# App vars
|
||||||
@@ -93,7 +94,7 @@ class ManjaroHello():
|
|||||||
self.builder.get_object("autostart").set_active(self.autostart)
|
self.builder.get_object("autostart").set_active(self.autostart)
|
||||||
|
|
||||||
# Live systems
|
# Live systems
|
||||||
if os.path.exists(live_path) and os.path.isfile("/usr/bin/calamares"):
|
if os.path.exists(live_path) and os.path.isfile(installer_path):
|
||||||
self.builder.get_object("installlabel").set_visible(True)
|
self.builder.get_object("installlabel").set_visible(True)
|
||||||
self.builder.get_object("install").set_visible(True)
|
self.builder.get_object("install").set_visible(True)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user