obosdi-pkg/install/desktop/plasma5/complements

47 lines
1.2 KiB
Text
Raw Normal View History

2015-08-20 14:37:06 -06:00
#!/bin/bash
. ./lib
options=()
#options+=("sddm-kcm" "" off)
#options+=("networkmanager" "" on)
2015-08-20 14:37:06 -06:00
options+=("partitionmanager" "" on)
#plasma-nm
#muon (package manager)
#options+=("kdesu" "" on)
#options+=("kdesu4" "" on)
options+=("gnome-keyring" "" on)
options+=("gnome-breeze-git" "(AUR)" on)
options+=("kmix" "(Old mixer)" off)
2015-08-20 14:37:06 -06:00
#options+=("konsolepart4" "" on)
2015-08-29 16:14:50 -06:00
#options+=("octopi" "(AUR)" on)
2015-08-20 14:37:06 -06:00
#options+=("kde-gtk-config" "" on)
#options+=("oxygen-gtk2" "" on)
#options+=("oxygen-gtk3-git" "(AUR)" off)
#options+=("breeze-kde4" "" on)
#options+=("breeze" "" on)
#options+=("archlinux-themes-kdm" "" on)
#options+=("numlockx" "" on)
#options+=("kdeconnect" "" off)
#options+=("sshfs" "(For kdeconnect)" off)
2015-08-20 14:37:06 -06:00
sel=$(whiptail --backtitle "$apptitle" --title "Plasma Complements :" --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
case $itm in
#'"octopi"' | \
#'"oxygen-gtk3-git"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
'"gnome-breeze-git"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
2015-08-20 14:37:06 -06:00
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
exit 0