aerothemeplasma/plasma/plasmoids/io.gitgud.wackyideas.panel/contents/config/main.xml
wackyideas 48147af648 panel: prevent config overrides when switching shells
When switching from the regular KDE Plasma session over to the ATP
session, the panel has a tendency to revert to a 30px tall floating
panel. To fix this, store the properties in the internal Plasmoid config
and update it only when the user changes the configuration from edit
mode.

This commit also adds support for floating applets, which are enabled by
default. Other Plasmoids should get refactored to drop code related to
positioning as it can be handled by the floating applet mode now.
2026-03-15 20:03:08 +01:00

23 lines
711 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile name=""/>
<group name="General">
<entry name="AppletOrder" type="String">
<label>encoded order of items</label>
</entry>
<entry name="panelThickness" type="Int">
<default>40</default>
</entry>
<entry name="panelFloating" type="Bool">
<default>false</default>
</entry>
<entry name="panelFloatingApplets" type="Bool">
<default>true</default>
</entry>
</group>
</kcfg>