obosdi-pkg/install/xorg/fonts/default

33 lines
686 B
Text
Raw Normal View History

2015-08-20 14:37:06 -06:00
#!/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