fix broken iwd check by validating iwctl instead

This commit is contained in:
tobiloba ogundiyan
2025-07-17 18:57:37 -04:00
parent 4b13434cda
commit 51c2437f2a

View File

@ -1,6 +1,6 @@
# Install iwd explicitly if it wasn't included in archinstall
# This can happen if archinstall used ethernet
if ! command -v iwd &>/dev/null; then
if ! command -v iwctl &>/dev/null; then
yay -S --noconfirm --needed iwd
sudo systemctl enable --now iwd.service
fi