mirror of
https://github.com/stornic56/debianito-post-install.git
synced 2026-09-14 06:02:35 +00:00
8c922ee424
- Replaced the restrictive Broadcom firmware installation flow with a persistent, step-by-step process in modules/firmware.sh. Now installs dkms, wireless-tools, and linux-headers-amd64 separately, then applies blacklist configuration, updates initramfs, and loads conflicting modules properly. - Fixed conky package name across system.sh and bullseye/extras.sh. Changed from "conky" to "conky-all" with corresponding state variable updates for correct installation via apt. - Corrected broken GRUB sed command in modules/gpu.sh for AMD GCN support. Added grep guard to prevent duplicate parameter insertion and fixed regex pattern for proper cmdline modification. - Added whiptail pre-flight check in debianito.sh. Auto-installs required TUI dependencies if missing before the main menu, preventing runtime failures. - Fixed home directory path resolution bug in modules/sudo_config.sh. Replaced eval echo "~$USER" with getent passwd approach for reliable user home detection across SUDO_USER contexts. - Implemented global lspci output caching across 18+ locations. Single cache population via _init_lspci_cache() before detect_gpu, all subsequent reads use LSPCI_OUTPUT variable to eliminate redundant hardware polling calls. - Added apt update deduplication helper in modules/utils.sh. _ensure_apt_updated() with APT_UPDATED flag bypasses redundant package list refreshes across extras/, gaming/, firmware/, and desktop_display/ modules while preserving transactional rollback paths in repos.sh. - Fixed STATE_REFRESHED logic in debianito.sh main_menu case statement. Added STATE_REFRESHED=true to branches 3, 5, 7, 9, 11, 12, and 13 that mutate system state, ensuring refresh_system_state() triggers correctly after configuration changes. - Removed dead REPOS_CONFIGURED variable from debianito.sh and modules/repos.sh. Variable was written but never read, eliminated to clean up global namespace without affecting repository functionality.
439 lines
17 KiB
Bash
439 lines
17 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
manage_desktop_display() {
|
|
while true; do
|
|
local choice
|
|
choice=$(_menu "Desktop & Display" \
|
|
"Select an option:" $TUI_ALTO $TUI_ANCHO 6 \
|
|
"1" "Desktop Environment" \
|
|
"2" "Display Manager" \
|
|
"3" "Back to main menu")
|
|
[ -z "$choice" ] && break
|
|
clear
|
|
case "$choice" in
|
|
1) desktop_environment_menu ;;
|
|
2) display_manager_menu ;;
|
|
3) break ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
desktop_environment_menu() {
|
|
while true; do
|
|
local -a env_items=()
|
|
env_items+=("1" "XFCE")
|
|
env_items+=("2" "LXDE")
|
|
env_items+=("3" "Back")
|
|
# Future desktop environments: add "3" "GNOME", "4" "KDE", ... here
|
|
# and a matching case below calling its own menu (e.g. gnome_menu).
|
|
local choice
|
|
choice=$(_menu "Desktop Environment" \
|
|
"Select a desktop environment:" $TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${env_items[@]}")
|
|
[ -z "$choice" ] && break
|
|
clear
|
|
case "$choice" in
|
|
1) xfce_menu ;;
|
|
2) lxde_menu ;;
|
|
3) break ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
lxde_menu() {
|
|
local choice
|
|
choice=$(_radiolist "LXDE" \
|
|
"Select an option:" $TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"1" "LXDE (Escritorio completo)" OFF \
|
|
"2" "LXDE Core (Instalación mínima)" OFF)
|
|
[ -z "$choice" ] && return 0
|
|
clear
|
|
case "$(echo "$choice" | tr -d '"')" in
|
|
1) _install_lxde_full ;;
|
|
2) _install_lxde_core ;;
|
|
esac
|
|
}
|
|
|
|
_install_lxde_full() {
|
|
echo -e "${GREEN}Installing LXDE (Full) + LightDM...${NC}"
|
|
echo "lightdm shared/default-x-display-manager select lightdm" | sudo debconf-set-selections
|
|
_run_cmd "LXDE Full" "sudo apt install -y lxde lightdm" \
|
|
"Installing LXDE (Full Meta Package) + LightDM..."
|
|
sudo systemctl enable lightdm
|
|
echo -e "${GREEN}LXDE installed. LightDM enabled.${NC}"
|
|
}
|
|
|
|
_install_lxde_core() {
|
|
echo -e "${GREEN}Installing LXDE Core + LightDM...${NC}"
|
|
echo "lightdm shared/default-x-display-manager select lightdm" | sudo debconf-set-selections
|
|
_run_cmd "LXDE Core" "sudo apt install -y lxde-core lightdm" \
|
|
"Installing LXDE Core (Minimal) + LightDM..."
|
|
sudo systemctl enable lightdm
|
|
echo -e "${GREEN}LXDE Core installed. LightDM enabled.${NC}"
|
|
}
|
|
|
|
xfce_menu() {
|
|
while true; do
|
|
local -a xf_items=()
|
|
xf_items+=("1" "XFCE (Full Meta Package)")
|
|
xf_items+=("2" "XFCE (Minimal Core)")
|
|
[ "$DEBIAN_VERSION" = "13" ] && xf_items+=("3" "XFCE Wayland (Experimental — labwc)")
|
|
xf_items+=("4" "XFCE Custom (Choose packages)")
|
|
xf_items+=("5" "Back")
|
|
local choice
|
|
choice=$(_menu "XFCE" \
|
|
"Select an option:" $TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${xf_items[@]}")
|
|
[ -z "$choice" ] && break
|
|
clear
|
|
case "$choice" in
|
|
1) _install_xfce_full ;;
|
|
2) _install_xfce_minimal ;;
|
|
3) _install_xfce_wayland ;;
|
|
4) _install_xfce_custom ;;
|
|
5) break ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
_install_xfce_full() {
|
|
_run_cmd "XFCE Full" "sudo apt install -y xfce4 xfce4-goodies xfce4-power-manager" \
|
|
"Installing XFCE (Full Meta Package)..."
|
|
_xfce_polkit_rules
|
|
}
|
|
|
|
_install_xfce_minimal() {
|
|
_run_cmd "XFCE Minimal" "sudo apt install -y xfce4" \
|
|
"Installing XFCE (Minimal Core)..."
|
|
_xfce_polkit_rules
|
|
}
|
|
|
|
_install_xfce_wayland() {
|
|
_run_cmd "XFCE Wayland" "sudo apt install -y xfce4 labwc" \
|
|
"Installing XFCE + labwc (Wayland, experimental)..."
|
|
_msg "XFCE Wayland" "labwc is EXPERIMENTAL on XFCE 4.20.\n\nAfter reboot, select the Wayland session\nfrom the login screen." 12 65
|
|
_xfce_polkit_rules
|
|
}
|
|
|
|
_install_xfce_custom() {
|
|
local -a items=()
|
|
for pkg in thunar xfdesktop4 xfwm4 xfce4-panel xfce4-terminal \
|
|
xfce4-screenshooter ristretto mousepad xfce4-session \
|
|
xfce4-settings xfce4-power-manager; do
|
|
items+=("$pkg" "$pkg" "$(_state "$pkg")")
|
|
done
|
|
local choices
|
|
choices=$(_checklist "XFCE Custom" \
|
|
"Select the XFCE packages to install:" $TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${items[@]}")
|
|
[ -z "$choices" ] && return
|
|
local cleaned
|
|
cleaned=$(echo "$choices" | tr -d '"')
|
|
[ -z "$cleaned" ] && return
|
|
_run_cmd "XFCE Custom" "sudo apt install -y $cleaned" \
|
|
"Installing selected XFCE packages..."
|
|
_xfce_polkit_rules
|
|
}
|
|
|
|
_xfce_polkit_rules() {
|
|
is_installed xfce4-power-manager || return 0
|
|
|
|
local rules_dir="/etc/polkit-1/rules.d"
|
|
sudo mkdir -p "$rules_dir"
|
|
|
|
cat <<'EOF' | sudo tee "$rules_dir/85-suspend.rules" >/dev/null
|
|
polkit.addRule(function(action, subject) {
|
|
if (action.id == "org.freedesktop.login1.suspend" &&
|
|
subject.isInGroup("users")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|
|
EOF
|
|
cat <<'EOF' | sudo tee "$rules_dir/89-backlight.rules" >/dev/null
|
|
polkit.addRule(function(action, subject) {
|
|
if (action.id == "org.freedesktop.upower.backlight" &&
|
|
subject.isInGroup("backlight")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|
|
EOF
|
|
|
|
if ! getent group backlight >/dev/null 2>&1; then
|
|
sudo groupadd --system backlight || true
|
|
fi
|
|
local de_user="${SUDO_USER:-$USER}"
|
|
if [ -n "$de_user" ] && ! id -nG "$de_user" 2>/dev/null | grep -qw backlight; then
|
|
sudo usermod -aG backlight "$de_user" || true
|
|
fi
|
|
sudo systemctl restart polkit.service 2>/dev/null || true
|
|
echo -e "${GREEN}Polkit rules installed (suspend + backlight). User '${de_user}' added to 'backlight' group.${NC}"
|
|
}
|
|
|
|
display_manager_menu() {
|
|
while true; do
|
|
local -a dm_items=()
|
|
dm_items+=("1" "LightDM")
|
|
dm_items+=("2" "GDM3")
|
|
dm_items+=("3" "SDDM")
|
|
if [ "$DEBIAN_VERSION" = "12" ] || [ "$DEBIAN_VERSION" = "13" ]; then
|
|
dm_items+=("4" "greetd")
|
|
dm_items+=("5" "Back")
|
|
else
|
|
dm_items+=("4" "Back")
|
|
fi
|
|
local choice
|
|
choice=$(_menu "Display Manager" \
|
|
"Select an option:" $TUI_ALTO $TUI_ANCHO 6 \
|
|
"${dm_items[@]}")
|
|
[ -z "$choice" ] && break
|
|
clear
|
|
case "$choice" in
|
|
1) lightdm_config_menu ;;
|
|
2) configure_gdm3 ;;
|
|
3) configure_sddm ;;
|
|
4)
|
|
if [ "$DEBIAN_VERSION" = "12" ] || [ "$DEBIAN_VERSION" = "13" ]; then
|
|
configure_greetd
|
|
else
|
|
break
|
|
fi
|
|
;;
|
|
5) break ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
lightdm_config_menu() {
|
|
local -a items=()
|
|
items+=("install_lightdm" "Install LightDM & GTK Greeter" "$(_state lightdm)")
|
|
items+=("enable_userlist" "Enable user list at login screen" "OFF")
|
|
items+=("enable_autologin" "Enable autologin for current user" "OFF")
|
|
local choices
|
|
choices=$(_checklist "LightDM Configuration" \
|
|
"Select options to apply:" $TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${items[@]}")
|
|
if [ -z "$choices" ]; then
|
|
echo "No changes."
|
|
_pause
|
|
return
|
|
fi
|
|
local cleaned
|
|
cleaned=$(echo "$choices" | tr -d '"')
|
|
for item in $cleaned; do
|
|
case $item in
|
|
install_lightdm)
|
|
if ! is_installed lightdm || ! is_installed lightdm-gtk-greeter-settings; then
|
|
echo "lightdm shared/default-x-display-manager select lightdm" | sudo debconf-set-selections
|
|
_run_cmd "LightDM" "sudo apt install -y lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings" "Installing LightDM & GTK Greeter..."
|
|
else
|
|
echo -e "${GREEN}[LightDM] LightDM and GTK Greeter settings are already installed, skipping...${NC}"
|
|
fi
|
|
;;
|
|
enable_userlist)
|
|
local conf="/etc/lightdm/lightdm.conf.d/50-debianito-userlist.conf"
|
|
sudo mkdir -p "$(dirname "$conf")"
|
|
if echo "[Seat:*]
|
|
greeter-hide-users=false" | sudo tee "$conf" >/dev/null; then
|
|
echo -e "${GREEN}User list enabled in LightDM.${NC}"
|
|
else
|
|
echo -e "${RED}Failed to write configuration.${NC}"
|
|
fi
|
|
;;
|
|
enable_autologin)
|
|
local dm_conf="/etc/lightdm/lightdm.conf"
|
|
local lightdm_user="${SUDO_USER:-$USER}"
|
|
sudo sed -i 's/^#[[:space:]]*autologin-user[[:space:]=].*/autologin-user='"$lightdm_user"'/' "$dm_conf"
|
|
sudo sed -i 's/^#[[:space:]]*autologin-user-timeout[[:space:]=].*/autologin-user-timeout=0/' "$dm_conf"
|
|
echo -e "${GREEN}Autologin enabled for user: ${lightdm_user}${NC}"
|
|
;;
|
|
esac
|
|
done
|
|
_pause
|
|
}
|
|
|
|
configure_greetd() {
|
|
while true; do
|
|
local -a gd_items=()
|
|
gd_items+=("1" "Install base greetd")
|
|
gd_items+=("2" "Install greetd + tuigreet (Recommended TUI greeter)")
|
|
if [ "$DEBIAN_VERSION" = "13" ]; then
|
|
gd_items+=("3" "Install gtkgreet (Requires manual setup)")
|
|
gd_items+=("4" "Install nwg-hello (Requires manual setup)")
|
|
gd_items+=("5" "Install wlgreet (Requires manual setup)")
|
|
gd_items+=("6" "Back")
|
|
else
|
|
gd_items+=("3" "Back")
|
|
fi
|
|
local choice
|
|
choice=$(_menu "greetd Configuration" \
|
|
"Select an option:" \
|
|
$TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${gd_items[@]}")
|
|
[ -z "$choice" ] && return
|
|
clear
|
|
case "$choice" in
|
|
1)
|
|
echo "greetd shared/default-x-display-manager select greetd" | sudo debconf-set-selections
|
|
_run_cmd "greetd" "sudo apt install -y greetd" "Installing greetd..."
|
|
_msg "greetd" "Warning: greetd was installed but NOT configured.\n\nYou must manually create /etc/greetd/config.toml\nto be able to log in.\n\nSee 'man greetd' and 'man 5 greetd-sessions'."
|
|
;;
|
|
2)
|
|
if [ "$DEBIAN_VERSION" = "12" ]; then
|
|
if [ "$(is_backports_enabled)" != true ]; then
|
|
_write_deb822_backports "bookworm"
|
|
_ensure_apt_updated
|
|
fi
|
|
_run_cmd "greetd" "sudo apt install -y -t bookworm-backports tuigreet greetd" "Installing greetd + tuigreet..."
|
|
else
|
|
_run_cmd "greetd" "sudo apt install -y greetd tuigreet" "Installing greetd + tuigreet..."
|
|
fi
|
|
_msg "greetd" "Warning: greetd was installed but NOT configured.\n\nYou must manually create /etc/greetd/config.toml\nto be able to log in.\n\nSee 'man greetd' and 'man 5 greetd-sessions'."
|
|
;;
|
|
3)
|
|
if [ "$DEBIAN_VERSION" = "13" ]; then
|
|
echo "greetd shared/default-x-display-manager select greetd" | sudo debconf-set-selections
|
|
_run_cmd "greetd" "sudo apt install -y greetd gtkgreet" "Installing greetd + gtkgreet..."
|
|
_msg "greetd" "Warning: greetd was installed but NOT configured.\n\nYou must manually create /etc/greetd/config.toml\nto be able to log in.\n\nSee 'man greetd' and 'man 5 greetd-sessions'."
|
|
else
|
|
return
|
|
fi
|
|
;;
|
|
4)
|
|
if [ "$DEBIAN_VERSION" = "13" ]; then
|
|
echo "greetd shared/default-x-display-manager select greetd" | sudo debconf-set-selections
|
|
_run_cmd "greetd" "sudo apt install -y greetd nwg-hello" "Installing greetd + nwg-hello..."
|
|
_msg "greetd" "Warning: greetd was installed but NOT configured.\n\nYou must manually create /etc/greetd/config.toml\nto be able to log in.\n\nSee 'man greetd' and 'man 5 greetd-sessions'."
|
|
fi
|
|
;;
|
|
5)
|
|
if [ "$DEBIAN_VERSION" = "13" ]; then
|
|
echo "greetd shared/default-x-display-manager select greetd" | sudo debconf-set-selections
|
|
_run_cmd "greetd" "sudo apt install -y greetd wlgreet" "Installing greetd + wlgreet..."
|
|
_msg "greetd" "Warning: greetd was installed but NOT configured.\n\nYou must manually create /etc/greetd/config.toml\nto be able to log in.\n\nSee 'man greetd' and 'man 5 greetd-sessions'."
|
|
fi
|
|
;;
|
|
6) return ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
configure_gdm3() {
|
|
while true; do
|
|
local items_enabled=()
|
|
items_enabled+=("install" "Install/Reinstall gdm3 (Set as default)" "$(_state gdm3)")
|
|
items_enabled+=("userlist" "Hide user list (disable-user-list)" "OFF")
|
|
items_enabled+=("autologin" "Configure Autologin" "OFF")
|
|
if [ "$DEBIAN_VERSION" = "12" ] || [ "$DEBIAN_VERSION" = "13" ]; then
|
|
if [ "$HAS_NVIDIA" = true ]; then
|
|
items_enabled+=("wayland" "Force Enable Wayland on NVIDIA (Risk!)" "OFF")
|
|
fi
|
|
fi
|
|
local choice
|
|
choice=$(_checklist "GDM3 Configuration" \
|
|
"Select options to apply:" \
|
|
$TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"${items_enabled[@]}")
|
|
[ -z "$choice" ] && return
|
|
clear
|
|
|
|
local cleaned
|
|
cleaned=$(echo "$choice" | tr -d '"')
|
|
for item in $cleaned; do
|
|
case $item in
|
|
install)
|
|
echo "gdm3 shared/default-x-display-manager select gdm3" | sudo debconf-set-selections
|
|
_run_cmd "GDM3" "sudo apt install -y gdm3" "Installing gdm3..."
|
|
;;
|
|
userlist)
|
|
local greeter_conf="/etc/gdm3/greeter.dconf-defaults"
|
|
if sudo grep -q '^disable-user-list=true' "$greeter_conf" 2>/dev/null; then
|
|
sudo sed -i 's/^disable-user-list=true/# disable-user-list=true/' "$greeter_conf"
|
|
echo -e "${GREEN}User list is now VISIBLE.${NC}"
|
|
else
|
|
sudo sed -i 's/^#[[:space:]]*disable-user-list=true/disable-user-list=true/' "$greeter_conf"
|
|
echo -e "${GREEN}User list is now HIDDEN.${NC}"
|
|
fi
|
|
sudo dpkg-reconfigure gdm3 >/dev/null 2>&1
|
|
;;
|
|
autologin)
|
|
local daemon_conf="/etc/gdm3/daemon.conf"
|
|
local username
|
|
username=$(whiptail --title "GDM3 Autologin" \
|
|
--inputbox "Enter username to autologin (leave empty to DISABLE autologin):" \
|
|
10 60 "" 3>&1 1>&2 2>&3 || true)
|
|
if [ -n "$username" ]; then
|
|
sudo sed -i 's/^# *AutomaticLoginEnable[[:space:]=].*/AutomaticLoginEnable=true/' "$daemon_conf"
|
|
sudo sed -i 's/^# *AutomaticLogin[[:space:]=].*/AutomaticLogin='"$username"'/' "$daemon_conf"
|
|
echo -e "${GREEN}Autologin enabled for user: ${username}${NC}"
|
|
else
|
|
sudo sed -i 's/^AutomaticLoginEnable[[:space:]=].*/# AutomaticLoginEnable=false/' "$daemon_conf"
|
|
sudo sed -i 's/^AutomaticLogin[[:space:]=].*/# AutomaticLogin=/' "$daemon_conf"
|
|
echo -e "${GREEN}Autologin disabled.${NC}"
|
|
fi
|
|
;;
|
|
wayland)
|
|
local rules_link="/etc/udev/rules.d/61-gdm.rules"
|
|
if [ -L "$rules_link" ] || [ -f "$rules_link" ]; then
|
|
sudo rm -f "$rules_link"
|
|
echo -e "${GREEN}Reverted. Wayland will be disabled by default on next reboot.${NC}"
|
|
elif [ -f "/lib/udev/rules.d/61-gdm.rules" ]; then
|
|
if _confirm "Wayland on NVIDIA" \
|
|
"Force-enable Wayland on NVIDIA?\n\nRisk: This may break graphics or cause instability.\nProceed?"; then
|
|
sudo ln -s /dev/null "$rules_link"
|
|
echo -e "${GREEN}Wayland override created. Reboot required.${NC}"
|
|
fi
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
_pause
|
|
done
|
|
}
|
|
|
|
configure_sddm() {
|
|
while true; do
|
|
local choice
|
|
choice=$(_menu "SDDM Configuration" \
|
|
"Select an option:" \
|
|
$TUI_ALTO $TUI_ANCHO $TUI_ALTO_LISTA \
|
|
"1" "Install SDDM (Set as default)" \
|
|
"2" "Enable Autologin" \
|
|
"3" "Back")
|
|
[ -z "$choice" ] && return
|
|
clear
|
|
case "$choice" in
|
|
1)
|
|
echo "sddm shared/default-x-display-manager select sddm" | sudo debconf-set-selections
|
|
_run_cmd "SDDM" "sudo apt install -y sddm" "Installing SDDM..."
|
|
;;
|
|
2)
|
|
local sddm_session=""
|
|
local sddm_user="${SUDO_USER:-$USER}"
|
|
if [ -f /usr/share/wayland-sessions/plasmawayland.desktop ]; then
|
|
sddm_session="plasmawayland"
|
|
elif [ -f /usr/share/wayland-sessions/lxqt-wayland.desktop ]; then
|
|
sddm_session="lxqt-wayland"
|
|
elif [ -f /usr/share/xsessions/plasma.desktop ]; then
|
|
sddm_session="plasma"
|
|
elif [ -f /usr/share/xsessions/lxqt.desktop ]; then
|
|
sddm_session="lxqt"
|
|
fi
|
|
sudo mkdir -p /etc/sddm.conf.d
|
|
cat <<EOF | sudo tee /etc/sddm.conf.d/autologin.conf >/dev/null
|
|
[Autologin]
|
|
User=${sddm_user}
|
|
Session=${sddm_session}
|
|
Relogin=false
|
|
EOF
|
|
if [ -n "$sddm_session" ]; then
|
|
echo -e "${GREEN}Autologin enabled for user ${sddm_user}, session: ${sddm_session}.${NC}"
|
|
else
|
|
echo -e "${YELLOW}Autologin enabled for user ${sddm_user}. No session set (SDDM will use default).${NC}"
|
|
fi
|
|
_pause
|
|
;;
|
|
3) return ;;
|
|
esac
|
|
done
|
|
}
|