-
https://github.com/neutrinolabs/xrdp/wiki/Tips-and-FAQ says that being remote makes it different from local sessions. But I don't understand why GTK works and QT does not. If both of them not worked, it would have been easier to understand. I tried both XFCE Manjaro and KDE Manjaro. The result was the same. GTK apps such as Gparted or Pamac can show the polkit password dialogue. But QT apps like KDE Parition Manager or Manjaro Settings silently failed to show the dialogue and thus failed to do its job. Is this a problem of the QT framework? Is there a way to make QT polkit work, too? Screenshot: GTK apps show polkit Screenshot: QT apps fail to show polkit Screenshot: The same QT apps show polkit when logged in locally. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
A couple of things for you to look at:-
|
Beta Was this translation helpful? Give feedback.
Found out the reason. It was not because whether it is QT or GTK. It was because of the presence of
<allow_any>auth_admin</allow_any>
in the policy files under/usr/share/polkit-1/actions
, and it just happened to be that all GTK/Gnome apps on the computer had it and all the QT apps did not.Gparted
KDE Partition
When I modified the policy file of KDE Partition and add
<allow_any>auth_admin</allow_any>
, it showed the password dialogue.