SUMMARY STEPS TO REPRODUCE 1. execute kwriteconfig5 --file $HOME/.config/plasmarc --group PlasmaToolTips --key Delay "-1" OBSERVED RESULT kwriteconfig5: Unknown option '1' EXPECTED RESULT -1 should be written as the value of Delay SOFTWARE/OS VERSIONS Linux/KDE Plasma: 5.3.1-arch1-1-ARCH / 5.16.5 (available in About System) KDE Plasma Version: 5.16.5 KDE Frameworks Version: 5.62.0 Qt Version: 5.13.1 ADDITIONAL INFORMATION GUI settings can disable plasma tool tips by writing -1 as the value for Delay in PlasmaToolTips, but kwriteconfig5 can not
This is how some/most Shells behave, anything starting with '-' is considered as an option to the command being run (the same behaviour happens with grep and rm ...etc). To use that command line you have to use '--' to mark the end of the option names: kwriteconfig5 --file $HOME/.config/plasmarc --group PlasmaToolTips --key Delay -- "-1"