obosdi-pkg/install/xorg/video-drivers/open-source
2022-11-10 22:27:23 +01:00

23 lines
450 B
Bash

#!/bin/bash
. ./lib
options=()
items=$(pacman -Ssq xf86-video)
for item in $items; do
options+=("$item" "" off)
done
sel=$(dialog --backtitle "$apptitle" --title "XOrg video drivers :" --cancel-button "Back" --checklist "Choose video drivers for your system :" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
for itm in $sel; do
pkg="$pkg $(echo $itm | sed 's/"//g')"
done
instpkg "$pkg" "$aurpkg"
exit 0