Remove refs to application profiles that were removed
This commit is contained in:
parent
23a9e9f69a
commit
f91c0137d5
|
|
@ -27,8 +27,7 @@ if __name__ == 'cinnamon':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application cinnamon from the template under /applications/
|
||||
cinnamon = archinstall.Application(installation, 'cinnamon')
|
||||
cinnamon.install()
|
||||
# Install the Cinnamon packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
installation.enable_service('lightdm') # Light Display Manager
|
||||
|
|
|
|||
|
|
@ -29,9 +29,8 @@ if __name__ == 'deepin':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application deepin from the template under /applications/
|
||||
deepin = archinstall.Application(installation, 'deepin')
|
||||
deepin.install()
|
||||
# Install the Deepin packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
# Enable autostart of Deepin for all users
|
||||
installation.enable_service('lightdm')
|
||||
|
|
|
|||
|
|
@ -28,9 +28,8 @@ if __name__ == 'gnome':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application gnome from the template under /applications/
|
||||
gnome = archinstall.Application(installation, 'gnome')
|
||||
gnome.install()
|
||||
# Install the GNOME packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
installation.enable_service('gdm') # Gnome Display Manager
|
||||
# We could also start it via xinitrc since we do have Xorg,
|
||||
|
|
|
|||
|
|
@ -28,8 +28,7 @@ if __name__ == 'lxqt':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application xfce4 from the template under /applications/
|
||||
xfce = archinstall.Application(installation, 'lxqt')
|
||||
xfce.install()
|
||||
# Install the LXQt packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
installation.enable_service('sddm') # SDDM Display Manager
|
||||
|
|
|
|||
|
|
@ -27,8 +27,7 @@ if __name__ == 'mate':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application mate from the template under /applications/
|
||||
mate = archinstall.Application(installation, 'mate')
|
||||
mate.install()
|
||||
# Install the MATE packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
installation.enable_service('lightdm') # Light Display Manager
|
||||
|
|
|
|||
|
|
@ -24,6 +24,5 @@ def _prep_function(*args, **kwargs):
|
|||
# through importlib.util.spec_from_file_location("sway", "/somewhere/sway.py")
|
||||
# or through conventional import sway
|
||||
if __name__ == 'sway':
|
||||
# Install the application sway from the template under /applications/
|
||||
sway = archinstall.Application(installation, 'sway')
|
||||
sway.install()
|
||||
# Install the Sway packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
|
|
|||
|
|
@ -28,8 +28,7 @@ if __name__ == 'xfce4':
|
|||
# Install dependency profiles
|
||||
installation.install_profile('xorg')
|
||||
|
||||
# Install the application xfce4 from the template under /applications/
|
||||
xfce = archinstall.Application(installation, 'xfce4')
|
||||
xfce.install()
|
||||
# Install the XFCE4 packages
|
||||
installation.add_additional_packages(__packages__)
|
||||
|
||||
installation.enable_service('lightdm') # Light Display Manager
|
||||
|
|
|
|||
Loading…
Reference in New Issue