On Thu, Jun 5, 2025 at 20:51 (-0700), William Morder via tde-users wrote:
On Thursday 05 June 2025 14:50:17 David C Rankin via tde-users wrote:
On 6/5/25 11:47 AM, Darrell Anderson via tde-users wrote:
If you find anything in a stroke of brilliance, let us know.
Don't know if this will help at all.
<snip>
If you do go this route at some point, remember the last step, which is essential: sudo sh -c "echo 'export QT_QPA_PLATFORMTHEME=qt5ct' >> /etc/environment" Then, if memory serves, reboot.
Surely you shouldn't be modifying /etc/environment for your own preferences.
Looking at /etc/trinity/tdm/Xsession (and assuming that you use tdm, other display managers will be similar), I see
case $SHELL in */bash) [ -z "$BASH" ] && exec $SHELL $0 "$@" set +o posix [ -f /etc/profile ] && . /etc/profile if [ -f $HOME/.bash_profile ]; then . $HOME/.bash_profile elif [ -f $HOME/.bash_login ]; then . $HOME/.bash_login elif [ -f $HOME/.profile ]; then . $HOME/.profile fi ;;
(and similar code for other shells), so shouldn't you just put your own personal configs in, whichever of .bash_profile, .bash_login and .profile you have?
Jim