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)."
fi
# Default Terminal = Alacritty
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 /general/DefaultTerminal -s alacritty --create -t string
say_green "XFCE default terminal set to Alacritty!"
# Default Browser = Chromium
if command -v chromium >/dev/null 2>&1; then
xdg-settings set default-web-browser chromium.desktop 2>/dev/null || true
update-alternatives --set x-www-browser "$(command -v chromium)" || true
say_green "XFCE defeault browser set to chromium!"
fi
fi