mirror of
https://github.com/stornic56/debianito-post-install.git
synced 2026-07-16 05:49:49 +00:00
f043c130a8
- Stripped forced-scrollbar hack from _menu and _checklist - Eliminated TUI_ANCHO_REFORZADO overflow across 9 files - Removed redundant _inst() function globally - Added dynamic list height calculation for checklists - Introduced Desktop & Display menu (Option 12) - Fixed non-free-firmware false positive in repo detection - Restored terminal transparency for apt/vainfo output"
51 lines
2.2 KiB
Bash
51 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
# fonts.sh — Fonts
|
|
|
|
_cat_fonts() {
|
|
local headless=false
|
|
_is_headless && headless=true
|
|
local -a items=()
|
|
if ! $headless; then
|
|
local bebas_state; bebas_state=$(_state "fonts-bebas-neue")
|
|
local anon_state; anon_state=$(_state "fonts-anonymous-pro")
|
|
local verana_state; verana_state=$(_state "fonts-adf-verana")
|
|
local f3270_state; f3270_state=$(_state "fonts-3270")
|
|
local liberation_state; liberation_state=$(_state "fonts-liberation")
|
|
local mscore_state; mscore_state=$(_state "ttf-mscorefonts-installer")
|
|
local ubuntu_state; ubuntu_state=$(_state "fonts-ubuntu")
|
|
local recommended_state; recommended_state=$(_state "fonts-recommended")
|
|
items+=(
|
|
"fonts-bebas-neue" "Bebas Neue (display)" "$bebas_state"
|
|
"fonts-anonymous-pro" "Anonymous Pro (monospace)" "$anon_state"
|
|
"fonts-adf-verana" "ADF Verana (sans-serif)" "$verana_state"
|
|
"fonts-3270" "IBM 3270 terminal font" "$f3270_state"
|
|
"fonts-liberation" "Liberation (MS-compatible)" "$liberation_state"
|
|
"ttf-mscorefonts-installer" "Microsoft fonts (EULA required)" "$mscore_state"
|
|
"fonts-ubuntu" "Ubuntu font family" "$ubuntu_state"
|
|
"fonts-recommended" "Debian recommended fonts" "$recommended_state"
|
|
)
|
|
fi
|
|
|
|
local item_count=${#items[@]}
|
|
local lista_alto=$((item_count > TUI_ALTO_LISTA ? TUI_ALTO_LISTA : item_count))
|
|
local choices
|
|
choices=$(_checklist "Fonts" "Select fonts to install${SCROLL_HINT}:" $TUI_ALTO $TUI_ANCHO $lista_alto \
|
|
"${items[@]}" \
|
|
)
|
|
clear
|
|
|
|
[ -z "$choices" ] && return
|
|
|
|
local cleaned; cleaned=$(echo "$choices" | tr -d '"')
|
|
|
|
for pkg in $cleaned; do
|
|
if ! is_installed "$pkg"; then
|
|
_run_install "$pkg"
|
|
else
|
|
echo "$pkg already installed."
|
|
fi
|
|
done
|
|
|
|
echo -e "${GREEN}Fonts installed.${NC}"
|
|
}
|