Problem with Plank (dock) configurations

Hi @jvslice,
There are side effects using different DE-s with the same user_id .
I left the default dock1 for Cinnamon and a copy of that is dockx for XFCE.
Added this script planks.sh to autotart (Super Start…)

#!/bin/bash
if grep -q 'XFCE' <<< "$XDG_CURRENT_DESKTOP"; then
  plank -n "dockx"
 else
  plank
fi

(chmod +x planks.sh)

2 Likes