From c10b96bc2e3ba8f7d72dad03af4603d7125fa08d Mon Sep 17 00:00:00 2001 From: "[yuri]" <[yuri.kuit@gmail.com]> Date: Mon, 10 Nov 2025 17:39:05 +0100 Subject: [PATCH] bugfix --- v2/debian-full.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/v2/debian-full.sh b/v2/debian-full.sh index 1f385cd..5eb2546 100755 --- a/v2/debian-full.sh +++ b/v2/debian-full.sh @@ -125,19 +125,6 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then say_green "XFCE defeault terminal set to alacritty!" fi - # Add indicator-plugin to panel if not already present - if command -v xfconf-query >/dev/null 2>&1; then - xfconf-query -c xfce4-panel -p /panels -n -t int -s 1 || true - PANEL_ID=$(xfconf-query -c xfce4-panel -p /panels -v | grep -Eo '[0-9]+' | head -n1) - # Add indicator plugin to first panel - xfconf-query -c xfce4-panel -p /plugins/plugin-ids -t int -a -s "$(($(xfconf-query -c xfce4-panel -p /plugins/plugin-ids | wc -l)+1))" || true - xfconf-query -c xfce4-panel -p /plugins/plugin-ids -t int -a -s "indicator-plugin" || true - - # Add clipboard manager plugin - NEXT_ID=$(( NEXT_ID + 1 )) - xfconf-query -c xfce4-panel -p /plugins/plugin-ids -t int -a -s "$NEXT_ID" || true - xfconf-query -c xfce4-panel -p /plugins/plugin-ids -t int -a -s "clipman" || true - fi fi # End of script