Compare commits
5 Commits
f1a802ad66
...
master
Author | SHA1 | Date | |
---|---|---|---|
985d8bc7b9 | |||
856c794637 | |||
1257eb31ab | |||
adfc259d0f | |||
4c8de812ba |
@ -69,7 +69,7 @@ add_stormux_repo() {
|
|||||||
echo "" >> "$temp_conf"
|
echo "" >> "$temp_conf"
|
||||||
echo "[stormux]" >> "$temp_conf"
|
echo "[stormux]" >> "$temp_conf"
|
||||||
echo "SigLevel = Required" >> "$temp_conf"
|
echo "SigLevel = Required" >> "$temp_conf"
|
||||||
echo "Server = https://aarch64.stormux.org/" >> "$temp_conf"
|
echo "Server = https://aarch64.stormux.org/\$repo-\$arch" >> "$temp_conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Replace the original pacman.conf
|
# Replace the original pacman.conf
|
||||||
@ -95,7 +95,7 @@ install_xlibre() {
|
|||||||
yay --sudoflags "${sudoFlags[@]}" --sudoloop --noconfirm -Syu
|
yay --sudoflags "${sudoFlags[@]}" --sudoloop --noconfirm -Syu
|
||||||
|
|
||||||
# Check if we have internet connectivity
|
# Check if we have internet connectivity
|
||||||
if ! ping -c 1 aarch64.stormux.org &>/dev/null; then
|
if ! ping -c1 stormux.org &>/dev/null; then
|
||||||
msgbox "No internet connection detected. X11Libre installation requires internet access."
|
msgbox "No internet connection detected. X11Libre installation requires internet access."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
@ -112,18 +112,18 @@ install_xlibre() {
|
|||||||
|
|
||||||
# Install X11Libre packages from StormUX repository
|
# Install X11Libre packages from StormUX repository
|
||||||
infobox "Installing X11Libre server and drivers..."
|
infobox "Installing X11Libre server and drivers..."
|
||||||
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-server-common-git xlibre-server-devel-git; then
|
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-server-common xlibre-server-devel; then
|
||||||
msgbox "Failed to install X11Libre server components."
|
msgbox "Failed to install X11Libre server components."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! sudo "${sudoFlags[@]}" pacman -Sdd --noconfirm xlibre-server-git; then
|
if ! sudo "${sudoFlags[@]}" pacman -Sdd --noconfirm xlibre-server; then
|
||||||
msgbox "Failed to install X11Libre server main package."
|
msgbox "Failed to install X11Libre server main package."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install input and video drivers from StormUX repository
|
# Install input and video drivers from StormUX repository
|
||||||
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm stormux/xf86-input-libinput-xlibre stormux/xf86-video-dummy-with-vt stormux/xf86-video-fbdev; then
|
if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xlibre-input-libinput xlibre-video-dummy-with-vt xlibre-video-fbdev; then
|
||||||
msgbox "Failed to install X11Libre input and video drivers."
|
msgbox "Failed to install X11Libre input and video drivers."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user