https://bugs.kde.org/show_bug.cgi?id=515130
--- Comment #1 from Ilias Tsolis <[email protected]> --- the whole script #!/bin/bash # 1. Start Dolphin first dolphin & sleep 1.2 # 2. The Path to the trigger file CONF="$HOME/.config/lxqt/lxqt.conf" # 3. Flip the style to "kvantum" (mimics first toggle) # This triggers the first IN_MODIFY event sed -i 's/style=kvantum-dark/style=kvantum/g' "$CONF" # 4. Tiny pause to ensure the file system registers the write sleep 0.2 # 5. Flip it back to "kvantum-dark" (mimics second toggle) # This triggers the second IN_MODIFY event and restores your look sed -i 's/style=kvantum/style=kvantum-dark/g' "$CONF" # click on dolphin, change is applied -- You are receiving this mail because: You are watching all bug changes.
