diff --git a/v2/debian-full.sh b/v2/debian-full.sh index 75bf7cf..def5865 100755 --- a/v2/debian-full.sh +++ b/v2/debian-full.sh @@ -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