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 GitHub
parent 3d5dc40dd7
commit 3e4c5bdb26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()