This commit is contained in:
[yuri]
2025-11-10 17:32:08 +01:00
parent 177e9b6548
commit 10e475f142

View File

@@ -46,7 +46,7 @@ say_yellow "Starting full setup..."
bash "$SCRIPT_DIR/debian-minimal.sh" bash "$SCRIPT_DIR/debian-minimal.sh"
# Add extra packages # Add extra packages
install_packages arandr catfish galculator network-manager network-manager-applet network-manager-openvpn numlockx pulseaudio pavucontrol xfce4-indicator-plugin playerctl gparted xfce4-mixer xfce4-volumed-pulse install_packages arandr catfish galculator network-manager network-manager-applet network-manager-openvpn numlockx pulseaudio pavucontrol playerctl gparted xfce4-indicator-plugin xfce4-pulseaudio-plugin xfce4-clipman-plugin
# Ensure NetworkManager manages all interfaces # Ensure NetworkManager manages all interfaces
echo "Setting NetworkManager to manage all interfaces..." echo "Setting NetworkManager to manage all interfaces..."
@@ -131,6 +131,11 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then
# Add indicator plugin to first panel # 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 "$(($(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 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
fi fi