You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2019. It is now read-only.
Describe the bug
(This is a bug in the files generated by Cnchi, not Cnchi itself per se)
Cnchi's /etc/lightdm/Xsession file does not properly test for KDE, and thus starts qt5ct for KDE sessions leading to issues like Antergos/antergos-packages#455. KDE now uses startkde and not plasma, so the script misidentifies it as not a QT-based DE.
The fix is simply to add startkde to the list of commands the script is checking for
To Reproduce
Steps to reproduce the behavior:
On a system with the faulty Xsession file
Install qt5ct (now required by antergos-common-meta as of this commit)
Launch a KDE session using lightdm
KDE themes are not applied and are unchangeable
Expected behavior
KDE theming should work
Screenshots
N/A
Log Files
N/A
Patch (since I have no idea which branch to submit a PR to 🙃)
--- a/scripts/postinstall/Xsession+++ b/scripts/postinstall/Xsession@@ -65,7 +65,7 @@
sleep 2
fi
-if ! [[ "${@}" =~ plasma|lxqt ]]; then+if ! [[ "${@}" =~ plasma|startkde|lxqt ]]; then
# Fix ugly styles for Qt applications when running under GTK-based desktops and Qt 5.7+
export QT_QPA_PLATFORMTHEME='qt5ct'
unset QT_STYLE_OVERRIDE
The text was updated successfully, but these errors were encountered:
Describe the bug
(This is a bug in the files generated by Cnchi, not Cnchi itself per se)
Cnchi's
/etc/lightdm/Xsession
file does not properly test for KDE, and thus starts qt5ct for KDE sessions leading to issues like Antergos/antergos-packages#455. KDE now usesstartkde
and notplasma
, so the script misidentifies it as not a QT-based DE.The fix is simply to add
startkde
to the list of commands the script is checking forTo Reproduce
Steps to reproduce the behavior:
On a system with the faulty
Xsession
fileqt5ct
(now required byantergos-common-meta
as of this commit)Expected behavior
KDE theming should work
Screenshots
N/A
Log Files
N/A
Patch (since I have no idea which branch to submit a PR to 🙃)
The text was updated successfully, but these errors were encountered: