[Stable Update] 2024-03-06 - Kernels, Systemd, KDE Gear, Qt, GNOME, Firefox, Thunderbird

After recent update for lightdm, system is not applying configuration settings in ~/.profile including: export QT_QPA_PLATFORMTHEME="qt5ct"
for QT theme

If there is no response to this command

echo $QT_QPA_PLATFORMTHEME

Forum users have posted 3 different ways to resolve this:

  1. Copy configuration in ~/.profile to ~/.bash_profile

OR

  1. Configure ~/.bash_profile to read ~/.profile

    tee -a ~/.bash_profile <<< "[[ -f ~/.profile ]] && . ~/.profile"
    

OR

  1. create a symlink for ~/.profile to ~/.xprofile

    cd $HOME; ln -s .profile .xprofile
    

Xfce theming theming issues with some applications green others blue

2 Likes