ohai, KFN
Playing with my less-than-a-week old plasma5 install one thing I've found made me less than happy is that the three graphical applications I run as root (synaptic, muon and occasionally, dolphin) look horrible. No theming, big ugly fonts - so I did some research.
Problem is here - https://bugs.debian.org/cgi-bin/bugr...cgi?bug=824906
and workaround is here - https://bugs.debian.org/cgi-bin/bugr...?bug=824906#10
kdesu installs in a weird location: /usr/lib/kde4/libexec/kdesu-distrib/kdesu so rather than put that in my path I just symlinked to the executable, like this:
Note that the next command will alter the way kdesu works (we do this to preserve the environment), so if you have a root password I'd skip this step:
kdesurc is written to ~/.config if you ever need to find it.
I use keyboard shortcuts to launch both because I don't need them often, but command lines to start them are
If you ever want to revert the changes just delete the symlink we put in /usr/bin and the kdesurc in ~/.config
Still playing with it, but muon and dolphin are now themed with the same theme I use and font size is correct. synaptic is unchanged, so there may be a GTK3 tweak I can make, but it's been stubborn - which is why I installed muon
Hope this helps someone else -
Playing with my less-than-a-week old plasma5 install one thing I've found made me less than happy is that the three graphical applications I run as root (synaptic, muon and occasionally, dolphin) look horrible. No theming, big ugly fonts - so I did some research.
Problem is here - https://bugs.debian.org/cgi-bin/bugr...cgi?bug=824906
and workaround is here - https://bugs.debian.org/cgi-bin/bugr...?bug=824906#10
kdesu installs in a weird location: /usr/lib/kde4/libexec/kdesu-distrib/kdesu so rather than put that in my path I just symlinked to the executable, like this:
Code:
cd /usr/bin sudo ln -s /usr/lib/kde4/libexec/kdesu-distrib/kdesu kdesu
Code:
kwriteconfig5 --file kdesurc --group super-user-command --key super-user-command sudo
I use keyboard shortcuts to launch both because I don't need them often, but command lines to start them are
Code:
kdesu dbus-launch muon
Code:
kdesu dbus-launch dolphin
Still playing with it, but muon and dolphin are now themed with the same theme I use and font size is correct. synaptic is unchanged, so there may be a GTK3 tweak I can make, but it's been stubborn - which is why I installed muon
Hope this helps someone else -
Comment