This commit is contained in:
[yuri]
2025-11-10 17:07:48 +01:00
parent b1f3251c9b
commit 3b042feb7a

View File

@@ -85,11 +85,11 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then
say_yellow "xfconf-query not found — skipping XFCE font config (will apply at first login)." say_yellow "xfconf-query not found — skipping XFCE font config (will apply at first login)."
fi fi
# Default Terminal = Alacritty # Default Browser = Chromium
if command -v alacritty >/dev/null 2>&1; then if command -v chromium >/dev/null 2>&1; then
xfconf-query -c xfce4-session -p /sessions/Failsafe/Client0_Command -s alacritty --create -t string xdg-settings set default-web-browser chromium.desktop 2>/dev/null || true
xfconf-query -c xfce4-session -p /general/DefaultTerminal -s alacritty --create -t string update-alternatives --set x-www-browser "$(command -v chromium)" || true
say_green "XFCE default terminal set to Alacritty!" say_green "XFCE defeault browser set to chromium!"
fi fi
fi fi