fix syntax

This commit is contained in:
Tobias Powalowski 2024-09-08 17:42:00 +02:00
parent 6b0e0a3c32
commit e9c6749ca9

View file

@ -51,16 +51,16 @@ _IGNORE=()
} }
_install_fix_packages() { _install_fix_packages() {
_run_pacman "${_FIX_PACKAGES[@]}" _run_pacman "$(echo ${_FIX_PACKAGES[@]})"
rm /.archboot rm /.archboot
} }
_install_graphic() { _install_graphic() {
# check for qxl module # check for qxl module
if rg -q qxl /proc/modules; then if rg -q qxl /proc/modules; then
_GRAPHIC+="xf86-video-qxl" _GRAPHIC+=(xf86-video-qxl)
fi fi
_run_pacman "${_GRAPHIC[@]}" _run_pacman "$(echo ${_GRAPHIC[@]})"
rm /.archboot rm /.archboot
} }
@ -130,13 +130,13 @@ _custom_wayland_xorg() {
echo -e "\e[1mStep 1/2:\e[m Installing custom wayland..." echo -e "\e[1mStep 1/2:\e[m Installing custom wayland..."
echo " This will need some time..." echo " This will need some time..."
#shellcheck disable=SC2145 #shellcheck disable=SC2145
_prepare_graphic "${_WAYLAND_PACKAGE} ${_CUSTOM_WAYLAND[@]}" > "${_LOG}" 2>&1 _prepare_graphic "${_WAYLAND_PACKAGE} $(echo ${_CUSTOM_WAYLAND[@]})" > "${_LOG}" 2>&1
fi fi
if [[ -n "${_CUSTOM_X}" ]]; then if [[ -n "${_CUSTOM_X}" ]]; then
echo -e "\e[1mStep 1/2:\e[m Installing custom xorg..." echo -e "\e[1mStep 1/2:\e[m Installing custom xorg..."
echo " This will need some time..." echo " This will need some time..."
#shellcheck disable=SC2145 #shellcheck disable=SC2145
_prepare_graphic "${_XORG_PACKAGE} ${_CUSTOM_XORG[@]}" > "${_LOG}" 2>&1 _prepare_graphic "${_XORG_PACKAGE} $(echo ${_CUSTOM_XORG[@]})" > "${_LOG}" 2>&1
fi fi
echo -e "\e[1mStep 2/2:\e[m Setting up browser...\e[m" echo -e "\e[1mStep 2/2:\e[m Setting up browser...\e[m"
command -v firefox &>"${_NO_LOG}" && _firefox_flags command -v firefox &>"${_NO_LOG}" && _firefox_flags