Hey mbokil,
You should be able to start your desklet with the --xfce4
flag.
./desklet-to-debug.py --xfce4
or
python ./desklet-to-debug.py --xfce4
You can also use the ADESKLETS_ID environment variable to
pick a specific instance to start from that desklets
config.txt file.
So if you desklets config.txt file looks like this
id0 = {'background_blur': '3',
'background_effect': 'tint(alpha=128,red=200,green=200,blue=200);',
'border': 'images/borders/sunken2/',
'border_bottom': False}
id1 = {'background_blur': '0',
'background_effect': 'tint(alpha=128,red=0,green=0,blue=0);',
'border': 'images/borders/light/',
'border_bottom': True}
You can pick the instance you want to start like this.
ADESKLETS_ID="0" ./desklet-to-debug.py --xfce4
or
ADESKLETS_ID="1" ./desklet-to-debug.py --xfce4
I hope this answers your questions,
ZeroDivide