Merge pull request #199 from dylanmtaylor/patch-6

Remove chromium from default awesome install
This commit is contained in:
Anton Hvornum 2021-04-06 16:56:56 +00:00 committed by GitHub
commit 09abdec82b
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()