diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-16 18:01:12 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-16 18:01:12 +0100 |
commit | 16fb46926ef542f1a413acd434dae369cab18d85 (patch) | |
tree | 8b4ca4d794609f048ae8b67d91bd0bb49dae1fd0 | |
parent | 1b3f1d7aeb1a8e542d324c97cda0b6c2d57a58dc (diff) | |
download | archinstall-16fb46926ef542f1a413acd434dae369cab18d85.tar archinstall-16fb46926ef542f1a413acd434dae369cab18d85.tar.zst archinstall-16fb46926ef542f1a413acd434dae369cab18d85.zip |
Added light-locker as default desktop package.
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | util/install_packages.sh | 2 |
2 files changed, 13 insertions, 4 deletions
@@ -29,14 +29,23 @@ Execute 'loadkeys de-latin1' after booting to live environment, if you want to s ## To Do +(Highest priority first) + - [ ] Provide LUKS encryption -- [ ] Support installation with WiFi (instead of cable connection) -- [ ] Provide recommended package lists +- [ ] Create swap partition for suspension to disk - [ ] Modify mirrorlist - [ ] Automatic abort in case of errors +- [ ] Support installation with WiFi (instead of cable connection) +- [ ] Provide recommended package lists - [ ] Support BIOS systems - [ ] Support english localization -- [ ] Packaged for the AUR +- [ ] Package for the AUR + + +## Done + +(Last finished task first) + - [x] Create a main user with sudo permissions - [x] Provide installation of a desktop environment - [x] Provide reusable configuration file (json) diff --git a/util/install_packages.sh b/util/install_packages.sh index b56c145..9c58260 100644 --- a/util/install_packages.sh +++ b/util/install_packages.sh @@ -23,7 +23,7 @@ desktop_wanted=$1 # e.g. "yes" pacstrap /mnt base linux linux-firmware dhcpcd nano sudo grub efibootmgr if [ "$desktop_wanted" = "yes" ]; then - pacstrap /mnt xorg lightdm lightdm-gtk-greeter xfce4 mousepad + pacstrap /mnt xorg lightdm lightdm-gtk-greeter light-locker xfce4 mousepad fi echo "Installed packages - OK" |