19 lines
467 B
Bash
19 lines
467 B
Bash
#!/bin/bash
|
|
#shellcheck disable=SC2154
|
|
|
|
case "$(lscpu)" in
|
|
*AMD*) echo amd-ucode >> pkglist.txt ;;
|
|
*Intel*) echo intel-ucode >> pkglist.txt ;;
|
|
*) ;;
|
|
esac
|
|
|
|
[ -s "$flatpakpkg" ] \
|
|
&& printf '%s\n' flatpak xdg-desktop-portal-gtk >> pkglist.txt
|
|
|
|
[ -f /sys/class/power_supply/BAT0 ] && echo tlp >> pkglist.txt
|
|
|
|
pacstrap -C rootfs/etc/pacman.conf -K /mnt/ \
|
|
base linux{,-lts,-firmware} "$shell" - < pkglist.txt
|
|
|
|
find /mnt/etc -name '*.pacnew' -delete
|