32 lines
686 B
Bash
32 lines
686 B
Bash
#!/bin/bash
|
|
. ./lib
|
|
|
|
options=()
|
|
options+=("artwiz-fonts" "" on)
|
|
options+=("font-bh-ttf" "" on)
|
|
options+=("font-bitstream-speedo" "" on)
|
|
options+=("gsfonts" "" on)
|
|
options+=("sdl_ttf" "" on)
|
|
options+=("ttf-bitstream-vera" "" on)
|
|
options+=("ttf-cheapskate" "" on)
|
|
options+=("ttf-dejavu" "" on)
|
|
options+=("ttf-liberation" "" on)
|
|
options+=("xorg-fonts-type1" "" on)
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "XOrg Default Fonts :" --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"
|
|
|
|
exit 0
|