mirror of
https://github.com/stornic56/debianito-post-install.git
synced 2026-09-14 06:02:35 +00:00
92d0eb7467
- Bug Fixes: Rewrote `install_gaming_bullseye()` in `modules/bullseye/legacy.sh` to use a unified `_checklist` flow (matching Debian 12/13) with automatic i386 architecture detection and driver installation. Fixed greetd "Back" menu crash on Debian 11 by adding version-specific conditional logic in `desktop_display.sh`. Corrected ZRAM text overflow in `zram.sh` using `\n` line breaks for terminal wrapping. Updated Kernel Backports warning message in `debianito.sh` to clarify Bullseye limitations. - Architecture & Repositories: Refactored Debian 11 repository configuration (`configure_repos_bullseye`) to reuse modern submenus (`_repos_enable_components`, `_branch_migration`), eliminating ~44 lines of hardcoded logic and duplicate source list management. Restricted `non-free-firmware` component availability to Debian 12+ in `modules/repos.sh`. Implemented mandatory `apt autoremove -y` and `apt autoclean` execution immediately after enabling non-free/contrib components (`_repos_enable_components`). - UI & Menus: Added a new "Communication" menu (Option 4) between Internet and Media Players, featuring Signal, Telegram (with Trixie backports warning), and Hexchat. Moved all terminal emulators from System Tools to the "Customization System" -> Terminals submenu (`modules/extras/terminals/terminals.sh`) with version-specific logic (Alacritty 12+, Blackbox/Ptyxis 13+). Added Joplin installer in Office & Productivity for Debian 12/13 only. Integrated Synaptic into Software Centers menu alongside GNOME and Plasma stores. Unified Essential Pack UI across versions, switching between `fastfetch` (Trixie) and `neofetch` (Bookworm/Bullseye). - Hardware Drivers: Replaced deprecated `install_gpu_drivers()` in `modules/gpu.sh` with `_install_amd_intel_stack()` and `_install_nvidia_stack()`. Implemented specific logic for Debian 13 (Trixie): Blackwell GPUs now enable the official NVIDIA CUDA repository; Maxwell/Pascal on Backports forces a stable kernel path to ensure driver compatibility. Deprecated `install_nvidia_driver()` in favor of new stack functions while preserving global state variables (`NVIDIA_DRIVER_MODE`). - Utilities & Cleanup: Added `gdebi` and `bleachbit` to System Tools (GUI-only). Standardized menu headers across 15 files using a centralized `SCROLL_HINT` variable. Ensured VLC installation is conditional on headless status checks in Essential Pack modules.
87 lines
3.1 KiB
Bash
87 lines
3.1 KiB
Bash
#!/usr/bin/env bash
|
|
# communication.sh — Signal, Telegram, HexChat
|
|
|
|
_install_signal() {
|
|
_ensure_extrepo
|
|
if [ ! -f /etc/apt/sources.list.d/extrepo_signal.sources ]; then
|
|
_run_cmd "Signal" "sudo extrepo enable signal" "Enabling Signal repository..."
|
|
fi
|
|
_run_cmd "APT Update" "sudo apt update" "Updating package lists..."
|
|
if ! is_installed "signal-desktop"; then
|
|
_run_cmd "Signal" "sudo apt install -y signal-desktop" "Installing Signal..."
|
|
echo -e "${GREEN}Signal installed.${NC}"
|
|
else
|
|
echo "Signal already installed."
|
|
fi
|
|
}
|
|
|
|
_install_telegram() {
|
|
if [ "$DEBIAN_VERSION" = "13" ]; then
|
|
if ! is_backports_enabled; then
|
|
_msg "telegram-desktop" \
|
|
"telegram-desktop is only available in Trixie-backports.\n\n\
|
|
Please enable backports first via:\n Main Menu → 3 Configure Repositories" 12 65
|
|
echo -e "${YELLOW}Skipping telegram-desktop.${NC}"
|
|
return
|
|
fi
|
|
if ! is_installed "telegram-desktop"; then
|
|
_run_cmd "Telegram" "sudo apt install -y -t ${DEBIAN_CODENAME}-backports telegram-desktop" \
|
|
"Installing telegram-desktop from backports..."
|
|
echo -e "${GREEN}telegram-desktop installed.${NC}"
|
|
else
|
|
echo "telegram-desktop already installed."
|
|
fi
|
|
else
|
|
if ! is_installed "telegram-desktop"; then
|
|
_run_install "telegram-desktop"
|
|
echo -e "${GREEN}telegram-desktop installed.${NC}"
|
|
else
|
|
echo "telegram-desktop already installed."
|
|
fi
|
|
fi
|
|
}
|
|
|
|
_cat_communication() {
|
|
local headless=false
|
|
_is_headless && headless=true
|
|
if $headless; then
|
|
echo "Communication apps require a GUI — skipping."
|
|
return
|
|
fi
|
|
|
|
local -a items=()
|
|
local signal_state; signal_state=$(_state "signal-desktop")
|
|
local telegram_state; telegram_state=$(_state "telegram-desktop")
|
|
local hexchat_state; hexchat_state=$(_state "hexchat")
|
|
items+=(
|
|
"signal-desktop" "Signal Private Messenger (extrepo)" "$signal_state"
|
|
"telegram-desktop" "Telegram Desktop messaging" "$telegram_state"
|
|
"hexchat" "IRC client (HexChat)" "$hexchat_state"
|
|
)
|
|
|
|
local item_count=${#items[@]}
|
|
local lista_alto=$((item_count > TUI_ALTO_LISTA ? TUI_ALTO_LISTA : item_count))
|
|
local choices
|
|
choices=$(_checklist "Communication" "Select communication apps${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
|
|
case $pkg in
|
|
signal-desktop) _install_signal ;;
|
|
telegram-desktop) _install_telegram ;;
|
|
hexchat)
|
|
if ! is_installed "hexchat"; then
|
|
_run_install "hexchat"
|
|
echo -e "${GREEN}hexchat installed.${NC}"
|
|
else
|
|
echo "hexchat already installed."
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
echo -e "${GREEN}Communication tools installed.${NC}"
|
|
}
|