From f1a802ad66743d84b2fe38483ef0d03c3669af62 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 19 Jun 2025 04:17:36 -0400 Subject: [PATCH] make sure we get the correct packages from the correct repository. --- .includes/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.includes/functions.sh b/.includes/functions.sh index 32d3fd6..9c3f69b 100755 --- a/.includes/functions.sh +++ b/.includes/functions.sh @@ -122,8 +122,8 @@ install_xlibre() { return 1 fi - # Install input and video drivers - if ! sudo "${sudoFlags[@]}" pacman -S --noconfirm xf86-input-libinput-xlibre xf86-video-dummy-with-vt xf86-video-fbdev; then + # 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 msgbox "Failed to install X11Libre input and video drivers." return 1 fi