To anybody who is experiencing bad font spacing in window titles, there is a solution. Here is the bug report, and here are the instructions to resolve this issue:
The workaround is to switch Kwin to use the raster graphics system. First, test the raster graphics system using the following command:
If this solves the issue for you, you can make the setting permanent by creating the following script as /usr/local/bin/kwin-raster and making it executable:
Then, add the following to /etc/profile:
I hope this helps someone
The workaround is to switch Kwin to use the raster graphics system. First, test the raster graphics system using the following command:
Code:
kwin --replace --graphicssystem=raster &
Code:
#!/bin/bash kwin --graphicssystem=raster
Code:
export KDEWM="kwin-raster"
Comment