Remove chromium from default awesome install

Promotes a consistent installation experience across DEs.
This commit is contained in:
Dylan M. Taylor 2021-04-06 12:55:15 -04:00 committed by Dylan Taylor
parent 8bc1f0d420
commit 186f12c5f1
1 changed files with 1 additions and 2 deletions

View File

@ -31,11 +31,10 @@ if __name__ == 'awesome':
# Then setup and configure the desktop environment: awesome
editor = "nano"
filebrowser = "nemo gpicview-gtk3"
webbrowser = "chromium" # TODO: Ask the user to select one instead
utils = "openssh sshfs htop scrot wget"
installation.add_additional_packages(f"{webbrowser} {utils} {filebrowser} {editor}")
installation.add_additional_packages(f"{utils} {filebrowser} {editor}")
alacritty = archinstall.Application(installation, 'alacritty')
alacritty.install()