https://bugs.kde.org/show_bug.cgi?id=354802
Chango <changoscalien...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |changoscalien...@gmail.com --- Comment #170 from Chango <changoscalien...@gmail.com> --- I have the same problem, every so often the icons lose their custom order and are arranged only horizontally starting from the top left. The wallpaper I chose is changed to the one that comes by default. All plasmas that I put on the desktop are lost. Apparently the file ~ / .config / plasma-org.kde.plasma.desktop-appletsrc is replaced by its default version at some point during KDE startup. Under this hypothesis, I decided that to prevent the custom file from being lost, it was best to put it in read-only mode during the entire startup process and to return to read-write mode only when the startup had finished. To achieve this I made a script that runs automatically at KDE startup: ............................................................................................................... #! /bin/bash chmod 444 ~/.config/plasma-org.kde.plasma.desktop-appletsrc sleep 30s chmod 744 ~/.config/plasma-org.kde.plasma.desktop-appletsrc ................................................................................................................... I also added a script that runs during the log out process .................................................. .................................................. .. #! /bin/bash chmod 444 ~/.config/plasma-org.kde.plasma.desktop-appletsrc .................................................. .................................................. .. And it is working flawlessly to this day. My system is: Sistema operativo: Manjaro Linux Versión de KDE Plasma: 5.23.3 Versión de KDE Frameworks: 5.88.0 Versión de Qt: 5.15.2 Versión del kernel: 5.15.2-2-MANJARO (64 bits) Plataforma gráfica: X11 Procesadores: 2 × AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ Memoria: 3,8 GiB de RAM Procesador gráfico: GeForce 210/PCIe/SSE2 -- You are receiving this mail because: You are watching all bug changes.