obosdi-pkg/install/desktop/plasma5/plasma-packages

36 lines
573 B
Bash

#!/bin/bash
. ./lib
options=()
package="plasma"
items=$(pacman -Sqg $package)
for item in $items; do
case $item in
"plasma-mediacenter") options+=("$item" "" off);;
*) options+=("$item" "" on);;
esac
done
sel=$(whiptail --backtitle "$apptitle" --title "$package Install :" --checklist "" --cancel-button "Back" 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"
case $sel in
'"sddm-kcm"')
svcenable sddm
;;
esac
exit 0