Merge branch 'lxqt-lightdm' into formatting2
This commit is contained in:
commit
81423330aa
|
|
@ -388,7 +388,10 @@ class Partition:
|
|||
pathlib.Path(target).mkdir(parents=True, exist_ok=True)
|
||||
|
||||
try:
|
||||
sys_command(f'/usr/bin/mount {self.path} {target}')
|
||||
if options:
|
||||
sys_command(f'/usr/bin/mount -o {options} {self.path} {target}')
|
||||
else:
|
||||
sys_command(f'/usr/bin/mount {self.path} {target}')
|
||||
except SysCallError as err:
|
||||
raise err
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,8 @@ __packages__ = [
|
|||
"ttf-freefont",
|
||||
"leafpad",
|
||||
"slock",
|
||||
"sddm",
|
||||
"lightdm",
|
||||
"lightdm-gtk-greeter",
|
||||
]
|
||||
|
||||
|
||||
|
|
@ -43,4 +44,5 @@ if __name__ == 'lxqt':
|
|||
# Install the LXQt packages
|
||||
archinstall.storage['installation_session'].add_additional_packages(__packages__)
|
||||
|
||||
archinstall.storage['installation_session'].enable_service('sddm') # SDDM Display Manager
|
||||
# Enable autostart of LXQt for all users
|
||||
archinstall.storage['installation_session'].enable_service('lightdm')
|
||||
|
|
|
|||
Loading…
Reference in New Issue