Hello, new kubuntu user here
One of the things that bothered me right after install is that kde3 apps do not care much for changes to kde4 color scheme.
Running this after color scheme has been changed will make kde3 apps look bit better.
One of the things that bothered me right after install is that kde3 apps do not care much for changes to kde4 color scheme.
Running this after color scheme has been changed will make kde3 apps look bit better.
Code:
kwriteconfig --group General --key alternateBackground `kreadconfig --group Colors:Window --key BackgroundAlternate` kwriteconfig --group General --key background `kreadconfig --group Colors:Window --key BackgroundNormal` kwriteconfig --group General --key foreground `kreadconfig --group Colors:Window --key ForegroundNormal` kwriteconfig --group General --key linkColor `kreadconfig --group Colors:Window --key ForegroundLink` kwriteconfig --group General --key visitedLinkColor `kreadconfig --group Colors:Window --key ForegroundVisited` kwriteconfig --group General --key windowBackground `kreadconfig --group Colors:View --key BackgroundNormal` kwriteconfig --group General --key windowForeground `kreadconfig --group Colors:View --key ForegroundNormal` kwriteconfig --group General --key buttonBackground `kreadconfig --group Colors:Button --key BackgroundNormal` kwriteconfig --group General --key buttonForeground `kreadconfig --group Colors:Button --key ForegroundNormal` kwriteconfig --group General --key selectBackground `kreadconfig --group Colors:Selection --key BackgroundNormal` kwriteconfig --group General --key selectForeground `kreadconfig --group Colors:Selection --key ForegroundNormal`
Comment