So i thought the solution may help others.
(i could have found this out just by running the IDE from terminal and not studying the code but hey ho, live and learn eh

I found this code...
If Desktop.Is("GNOME") Or If Desktop.Is("LXDE") Or If Desktop.Is("MATE") Or If Desktop.Is("XFCE") Or If Desktop.Is("UNITY") Or If Desktop.Is("CYGWIN") Then
$sSecretTool = System.Find("secret-tool")
If Not $sSecretTool Then Error.Raise("'secret-tool' is not found. Did you install it?")
It seems a program called secret-tool needs to be installed for all those environments
on my Linux-mint21 MATE it wasn't working so i had to install libsecret-tools
Code: Select all
sudo apt install libsecret-tools
