From 275a5534d0f0411cade6e1f68d2c4a42cd64527c Mon Sep 17 00:00:00 2001 From: picodotdev Date: Mon, 15 Jan 2018 19:09:23 +0100 Subject: New todos --- README.md | 11 +++++++++++ alis.sh | 11 ++++++++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 931a93e..ed767c9 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,18 @@ You can test it in a VirtualBox virtual machine. ### TODO +* systemd-boot? +* /boot/efi/EFI? +* GNOME, fuente de entrada (teclado), https://unix.stackexchange.com/questions/316998/how-to-change-keyboard-layout-in-gnome-3-from-command-line, https://askubuntu.com/questions/276509/change-gsettings-without-running-x-and-unity +> gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'es')]" +* GNOME, KDE autologin +> ??? gsettings set org.gnome.desktop.lockdown disable-lock-screen true +* Common packages SSH, bluethooth, ntfs-3g, dosfstools, ... +* Not delete everything, specific partitions * GRUB theme +* Icon theme (numix), antergos GNOME theme +* rEFInd * Custom shell interpreter * Retry failed package download error * Ncurses with Vala (ValaNcurses.vala, commands output to file, copy file to installed system?) +* Review https://linuxgnublog.org/es/instalacion-de-arch-linux/, https://github.com/erm2587/ArchLinuxInstaller diff --git a/alis.sh b/alis.sh index c91cca2..25694cf 100644 --- a/alis.sh +++ b/alis.sh @@ -172,7 +172,12 @@ function facts() { fi } -function network_install() { +function prepare() { + timedatectl set-ntp true + configure_network +} + +function configure_network() { if [ -n "$WIFI_INTERFACE" ]; then cp /etc/netctl/examples/wireless-wpa /etc/netctl chmod 600 /etc/netctl @@ -395,7 +400,7 @@ function bootloader() { if [ "$BIOS_TYPE" == "uefi" ]; then arch-chroot /mnt pacman -Sy --noconfirm efibootmgr arch-chroot /mnt grub-install --target=x86_64-efi --bootloader-id=grub --efi-directory=/boot --recheck - #arch-chroot /mnt efibootmgr --create --disk $DEVICE --part $PARTITION_BOOT_NUMBER --loader /EFI/grub/grubx64.efi --label "GRUB" + #arch-chroot /mnt efibootmgr --create --disk $DEVICE --part $PARTITION_BOOT_NUMBER --loader /EFI/grub/grubx64.efi --label "GRUB Boot Manager" fi if [ "$BIOS_TYPE" == "bios" ]; then arch-chroot /mnt grub-install --target=i386-pc --recheck $DEVICE @@ -542,7 +547,7 @@ function main() { warning init facts - network_install + prepare partition install kernels -- cgit v1.2.3