2016-08-12 17:34:31 -06:00
|
|
|
#!/bin/bash
|
|
|
|
. ./lib
|
|
|
|
|
|
|
|
options=()
|
2018-09-29 19:21:57 -06:00
|
|
|
options+=("pacman-contrib" "Pacman contrib tools" on)
|
2017-12-16 13:31:51 -07:00
|
|
|
options+=("base-devel" "Build tools" on)
|
2016-08-12 17:34:31 -06:00
|
|
|
options+=("bash-completion" "Best completion in bash" on)
|
|
|
|
options+=("lsof" "ls open file" on)
|
|
|
|
options+=("dmidecode" "Hardware infos" on)
|
2016-12-04 13:09:28 -07:00
|
|
|
options+=("dialog" "Dialog boxes for script" on)
|
2016-08-12 17:34:31 -06:00
|
|
|
options+=("nmon" "System monitor" off)
|
|
|
|
options+=("mc" "Dual pane file explorer" off)
|
2018-09-15 19:36:14 -06:00
|
|
|
options+=("vim" "Vi Improved" off)
|
2018-09-22 13:38:23 -06:00
|
|
|
options+=("neofetch" "system information tool" off)
|
2016-08-12 17:34:31 -06:00
|
|
|
options+=("powertop" "power mon and management" off)
|
|
|
|
options+=("gpm" "Console mouse support" off)
|
2019-02-02 14:35:27 -07:00
|
|
|
options+=("liveroot" "(AUR) root overlay fs" off)
|
2016-08-12 17:34:31 -06:00
|
|
|
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "Console Generic packages :" --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
|
2019-02-02 14:35:27 -07:00
|
|
|
'"liveroot"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
|
2016-08-12 17:34:31 -06:00
|
|
|
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
instpkg "$pkg" "$aurpkg"
|
|
|
|
|
|
|
|
for itm in $sel; do
|
|
|
|
case $itm in
|
|
|
|
'"gpm"')
|
|
|
|
svcstart gpm
|
|
|
|
svcenable gpm
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|