I'm writing my first KDE plasmoid using QML. The hello world example uses a metadata.desktop
file, while this KDE Plasmoid tutorial talks about a metadata.json
instead and says that the metadata.desktop
is 'discouraged' now and a desktop file should be converted to json using desktoptojson
.
However, when I browse the globally installed plasmoids under /usr/share/plasma/plasmoids/
they all have both the metadata.desktop
and metadata.json
.
First question: So, what is really recommended? Just the metadata.json
? Or both?
And, I wasn't able to find the desktoptojson
tool. I'm using Linux Mint and the ./kdesrc-build --initial-setup
for debian based systems says that it's "This is woefully incomplete and not very useful" ... I read that "most users of this [i.e. desktoptojson
] utility will use the CMake macro kservice_desktop_to_json
as part of the process of building a plugin.". However, I haven't found the documentation yet how to use this.
Second question: In case one should maintain both files (for whatever reason), should I use desktoptojson
to keep them in sync? And if yes, how?
Thanks!
Here is how to convert metadata.desktop to metadata.json - inside the directory where the metadata.desktop file is:
Remove metadata.desktop file:
And just in case - to install plasmoid:
To remove plasmoid:
(Usually just copy-paste to /home/user/.local/share/plasma/plasmoids does the same trick as install - remove).