Remove refs to application profiles that were removed

This commit is contained in:
Dylan Taylor 2021-04-28 11:14:18 -04:00
parent 23a9e9f69a
commit f91c0137d5
7 changed files with 14 additions and 21 deletions

View File

@ -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

View File

@ -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')

View File

@ -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,

View File

@ -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

View File

@ -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

View File

@ -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__)

View File

@ -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