2015-08-20 14:37:06 -06:00
|
|
|
#!/bin/bash
|
|
|
|
. ./lib
|
|
|
|
|
|
|
|
options=()
|
|
|
|
options+=("Plasma Packages" "")
|
2015-08-29 16:10:18 -06:00
|
|
|
options+=("Localisations" "kde-l10n-")
|
2015-12-20 05:05:08 -07:00
|
|
|
options+=("KDE Apps Full Meta" "kde-applications-meta")
|
2015-08-29 16:10:18 -06:00
|
|
|
options+=("KDE Apps Full" "kde-applications")
|
2015-08-20 14:37:06 -06:00
|
|
|
options+=("KDE Apps" "")
|
2015-12-20 05:05:08 -07:00
|
|
|
options+=("KDE Apps Categories Meta" "")
|
|
|
|
options+=("KDE Apps Categories" "")
|
2015-08-20 14:37:06 -06:00
|
|
|
options+=("Complements" "")
|
|
|
|
|
|
|
|
defaultitem=""
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "Plasma5 Install Menu :" --menu "" --default-item "$defaultitem" --cancel-button "Back" 0 0 0 \
|
|
|
|
"${options[@]}" \
|
|
|
|
3>&1 1>&2 2>&3)
|
|
|
|
if [ ! "$?" = "0" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
sed -i "/^defaultitem=/c\defaultitem=\"$sel\"" $0
|
|
|
|
|
|
|
|
case $sel in
|
2015-09-12 09:07:06 -06:00
|
|
|
'Plasma Packages') script install/desktop/plasma5/plasma-packages;;
|
2015-08-29 16:14:02 -06:00
|
|
|
'Localisations') script install/desktop/plasma5/localisations;;
|
2015-12-20 05:05:08 -07:00
|
|
|
'KDE Apps Full Meta')
|
2015-08-29 16:10:18 -06:00
|
|
|
if ( confirm "This option install all KDE applications with meta packages.\n\nInstall KDE Meta Full (pacman -S kde-applications-meta) ?" ) then
|
|
|
|
instpkg "kde-applications-meta" ""
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
'KDE Apps Full')
|
|
|
|
if ( confirm "This option install all KDE applications.\n\nInstall KDE Full (pacman -S kde-applications) ?" ) then
|
|
|
|
instpkg "kde-applications" ""
|
|
|
|
fi
|
|
|
|
;;
|
2015-08-29 16:03:21 -06:00
|
|
|
'KDE Apps') script install/desktop/plasma5/kdeapps;;
|
2015-12-20 05:05:08 -07:00
|
|
|
'KDE Apps Categories Meta') script install/desktop/plasma5/metapackages;;
|
2015-12-20 05:32:30 -07:00
|
|
|
'KDE Apps Categories') menu install/desktop/plasma5/packagecategories;;
|
2015-08-20 14:37:06 -06:00
|
|
|
'Complements') script install/desktop/plasma5/complements;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|