mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 17:35:37 -04:00
displaymanager: Make the settings follow the naming convention.
Make the defaultDesktopEnvironment and desktopFile settings in displaymanager.conf follow the naming convention used in the other .conf files.
This commit is contained in:
parent
a54067f709
commit
b411a66baf
2 changed files with 4 additions and 4 deletions
|
@ -212,8 +212,8 @@ def run():
|
|||
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
|
||||
|
||||
if "default_desktop_environment" in libcalamares.job.configuration:
|
||||
entry = libcalamares.job.configuration["default_desktop_environment"]
|
||||
default_desktop_environment = DesktopEnvironment(entry["executable"], entry["desktop_file"])
|
||||
entry = libcalamares.job.configuration["defaultDesktopEnvironment"]
|
||||
default_desktop_environment = DesktopEnvironment(entry["executable"], entry["desktopFile"])
|
||||
else:
|
||||
default_desktop_environment = find_desktop_environment(root_mount_point)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue