obosdi-pkg/install/desktop/plasma5/complements

37 lines
786 B
Text
Raw Normal View History

2015-08-20 14:37:06 -06:00
#!/bin/bash
. ./lib
options=()
2017-02-04 15:20:44 -07:00
options+=("kwallet-pam" "" on)
2015-08-20 14:37:06 -06:00
options+=("partitionmanager" "" on)
options+=("gnome-keyring" "" on)
2018-06-04 15:32:22 -06:00
options+=("qt5-multimedia" "" on)
2016-08-12 17:30:18 -06:00
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
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
2017-02-04 15:20:44 -07:00
for itm in $sel; do
case $itm in
'"kwallet-pam"')
sed -i '/auth/a auth optional pam_kwallet5.so' /etc/pam.d/sddm
sed -i '/session/a session optional pam_kwallet5.so' /etc/pam.d/sddm
;;
esac
done
2015-08-20 14:37:06 -06:00
exit 0