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 # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application cinnamon from the template under /applications/ # Install the Cinnamon packages
cinnamon = archinstall.Application(installation, 'cinnamon') installation.add_additional_packages(__packages__)
cinnamon.install()
installation.enable_service('lightdm') # Light Display Manager installation.enable_service('lightdm') # Light Display Manager

View File

@ -29,9 +29,8 @@ if __name__ == 'deepin':
# Install dependency profiles # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application deepin from the template under /applications/ # Install the Deepin packages
deepin = archinstall.Application(installation, 'deepin') installation.add_additional_packages(__packages__)
deepin.install()
# Enable autostart of Deepin for all users # Enable autostart of Deepin for all users
installation.enable_service('lightdm') installation.enable_service('lightdm')

View File

@ -28,9 +28,8 @@ if __name__ == 'gnome':
# Install dependency profiles # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application gnome from the template under /applications/ # Install the GNOME packages
gnome = archinstall.Application(installation, 'gnome') installation.add_additional_packages(__packages__)
gnome.install()
installation.enable_service('gdm') # Gnome Display Manager installation.enable_service('gdm') # Gnome Display Manager
# We could also start it via xinitrc since we do have Xorg, # We could also start it via xinitrc since we do have Xorg,

View File

@ -28,8 +28,7 @@ if __name__ == 'lxqt':
# Install dependency profiles # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application xfce4 from the template under /applications/ # Install the LXQt packages
xfce = archinstall.Application(installation, 'lxqt') installation.add_additional_packages(__packages__)
xfce.install()
installation.enable_service('sddm') # SDDM Display Manager installation.enable_service('sddm') # SDDM Display Manager

View File

@ -27,8 +27,7 @@ if __name__ == 'mate':
# Install dependency profiles # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application mate from the template under /applications/ # Install the MATE packages
mate = archinstall.Application(installation, 'mate') installation.add_additional_packages(__packages__)
mate.install()
installation.enable_service('lightdm') # Light Display Manager 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") # through importlib.util.spec_from_file_location("sway", "/somewhere/sway.py")
# or through conventional import sway # or through conventional import sway
if __name__ == 'sway': if __name__ == 'sway':
# Install the application sway from the template under /applications/ # Install the Sway packages
sway = archinstall.Application(installation, 'sway') installation.add_additional_packages(__packages__)
sway.install()

View File

@ -28,8 +28,7 @@ if __name__ == 'xfce4':
# Install dependency profiles # Install dependency profiles
installation.install_profile('xorg') installation.install_profile('xorg')
# Install the application xfce4 from the template under /applications/ # Install the XFCE4 packages
xfce = archinstall.Application(installation, 'xfce4') installation.add_additional_packages(__packages__)
xfce.install()
installation.enable_service('lightdm') # Light Display Manager installation.enable_service('lightdm') # Light Display Manager