Skip to content

Commit 5011076

Browse files
committed
Remove packages and pipewire support
1 parent 995e5e9 commit 5011076

2 files changed

Lines changed: 0 additions & 23 deletions

File tree

alis.conf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,7 @@ DISPLAY_MANAGER="auto !gdm !sddm !lightdm !lxdm" # (single)
162162

163163
# packages
164164
## PACKAGES_MULTILIB configures multilib repository for pacman and install multilib packages for display driver.
165-
## PACKAGES_INSTALL installs packages on system installation, edit alis-packages.conf to select packages.
166-
## PACKAGES_PIPEWIRE installs PipeWire replacing PulseAudio, requires PACKAGES_INSTALL="true".
167-
### It is recommended to install packages after base installation and reboot.
168165
PACKAGES_MULTILIB="false"
169-
PACKAGES_INSTALL="false"
170-
PACKAGES_PIPEWIRE="true"
171166

172167
# provision
173168
## PROVISION provisions the files placed in files directory on the installed system (preserving directory structure). This is useful to copy some configuration files.

alis.sh

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ function check_variables() {
212212
check_variables_list "DESKTOP_ENVIRONMENT" "$DESKTOP_ENVIRONMENT" "gnome kde xfce mate cinnamon lxde i3-wm i3-gaps deepin budgie bspwm awesome qtile openbox leftwm dusk" "false" "true"
213213
check_variables_list "DISPLAY_MANAGER" "$DISPLAY_MANAGER" "auto gdm sddm lightdm lxdm" "true" "true"
214214
check_variables_boolean "PACKAGES_MULTILIB" "$PACKAGES_MULTILIB"
215-
check_variables_boolean "PACKAGES_INSTALL" "$PACKAGES_INSTALL"
216215
check_variables_boolean "PROVISION" "$PROVISION"
217216
check_variables_boolean "FWUPD" "$FWUPD"
218217
check_variables_boolean "VAGRANT" "$VAGRANT"
@@ -1777,23 +1776,6 @@ function display_manager_lxdm() {
17771776
arch-chroot "${MNT_DIR}" systemctl enable lxdm.service
17781777
}
17791778

1780-
# @deprecated: prefer to install packages after base system installation
1781-
function packages() {
1782-
print_step "packages()"
1783-
1784-
if [ "$PACKAGES_INSTALL" == "true" ]; then
1785-
USER_NAME="$USER_NAME" \
1786-
USER_PASSWORD="$USER_PASSWORD" \
1787-
PACKAGES_PIPEWIRE="$PACKAGES_PIPEWIRE" \
1788-
COMMOMS_LOADED="$COMMOMS_LOADED" \
1789-
MNT_DIR="${MNT_DIR}" \
1790-
./alis-packages.sh
1791-
if [ "$?" != "0" ]; then
1792-
exit 1
1793-
fi
1794-
fi
1795-
}
1796-
17971779
function provision() {
17981780
print_step "provision()"
17991781

0 commit comments

Comments
 (0)