This commit is contained in:
[yuri]
2025-11-10 17:05:21 +01:00
parent ef92a28f66
commit b1f3251c9b

View File

@@ -68,7 +68,7 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then
# Ensure xfconf-query exists (for XFCE settings) # Ensure xfconf-query exists (for XFCE settings)
if ! command -v xfconf-query >/dev/null 2>&1; then if ! command -v xfconf-query >/dev/null 2>&1; then
echo "${YELLOW}xfconf-query not found — installing xfce4-settings...${RESET}" say_yellow "xfconf-query not found — installing xfce4-settings..."
install_packages xfce4-settings install_packages xfce4-settings
fi fi
@@ -89,6 +89,7 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then
if command -v alacritty >/dev/null 2>&1; then if command -v alacritty >/dev/null 2>&1; then
xfconf-query -c xfce4-session -p /sessions/Failsafe/Client0_Command -s alacritty --create -t string xfconf-query -c xfce4-session -p /sessions/Failsafe/Client0_Command -s alacritty --create -t string
xfconf-query -c xfce4-session -p /general/DefaultTerminal -s alacritty --create -t string xfconf-query -c xfce4-session -p /general/DefaultTerminal -s alacritty --create -t string
say_green "XFCE default terminal set to Alacritty!"
fi fi
fi fi