Hello.
I’ve set Always on night color in my KDE settings. However, every time I reboot my computer, the panel indicator(the bulb ) says night color is on, while actually it doesn’t. I need to toggle it twice to really turn on night color.
seem to remember this being an occasional annoyance after i first installed kubutu 22.04, but are you saying you installed ubuntu and then installed plasma along side gnome?
if you type “info” on the desktop, open the setting page, copy the details and paste them here, it would help.
I figured out a not-so-elegant workaround myself.
Create a bash script toggling night color, namely enable_night_color.sh .
#!/bin/bash
/usr/bin/qdbus org.kde.kglobalaccel /component/kwin invokeShortcut "Toggle Night Color"
sleep 1
/usr/bin/qdbus org.kde.kglobalaccel /component/kwin invokeShortcut "Toggle Night Color"
Press Alt + F2, then type autostart, get into the Autostart system settings, add the shell script you’ve created as a Login Script.
Now every time on boot, the script will be automatically executed , toggling night color twice.