One last question...
Upon logging in.. I get a pop up wanting me to enter the password for some
mysterious keyring. IDK if its for Claws or what? It doesn't tell me the name
of the app.. It just says keyring at the top.
I tried entering the password I used for kwallet, which is the same password
that I log in with.. And it says its wrong.. I have no clue what the password
is... How do I reset it or stop it from popping up?
Thanks,
Chris
Hi,
I am currently on Debian 11, and I am thinking about trying TDE for the
very first time.
I would like to know, what is the difference between TDE 14.x and TDE
3.5.x and which one is the best?
And also, what would be the repo's be that I need to add via the
command line to get TDE?
And.. Do I need to install KDE first, and then TDE?
So there's a total of 4 questions.. Sorry in advance! :P
Thanks,
Chris
Does anyone know if it's possible to use a TDE theme/color scheme in Qt5
applications? All my Qt5 applications look so jarring. I try to use Qt5 as
little as possible (because I prefer Tqt and gtk2) but there's a few
applications I use such as KeepassXC and Mupen64plus-qt that use Qt5.
The command:
sudo aptitude remove kubuntu-default-settings-trinity kubuntu-desktop-trinity
Don't remove all Trinity ṕackages. Google don't solved this problem for me. I am Linux Mint user.
On Friday 14 January 2022 13.39:47 Michele Calgaro wrote:
> On 2022/01/14 09:12 PM, Thierry de Coulon wrote:
> > On Friday 14 January 2022 10.40:55 Michele Calgaro wrote:
> >> Hi Thierry,
> >> you can use the autostart manager module in TCC to run a script at
> >> logout. Cheers
> >> Michele
> >
> > Hi Michele,
> >
> > Sounds interresting but I can't find anything like this in TCC. The only
> > thing looking like it would be changing in Login Manager / Shutdown but
> > this would only work, seems, when shutting down.
> >
> > Thierry
>
> Hi Thierry,
> You need to install the package kcontrol-autostart-trinity and then it
> appears as TDE Components->Autostart manager. Cheers
> Michele
Thanks Michele. I copy to the ML because I did not know of this package, so it
may interrest others.
I also notice that while ~/.trinity/Autostart seems to always exist, and I
knew that putting a link to a script there runs it at startup, directory
~/.trinity/shutdown did not exist (or I never noticed it) and it plays the
same role for shutdown.
Once again Trinity solves problems simply and with elegance :)
TDE rules :))
Thierry
Hello all,
It seems at work they have decided to use Microsoft Office 365. The basic apps
won't be a bother as I don't have to use them. Teams might be a trouble,
however there is a Linux client and it seems to work ok.
Unfortunately, in typical M$ way, Teams for Linux autostarts (these people
can't believe you would not want to use their apps all the time).
It autostarts by creatiing a teams.desktop file file in ~/.config/autostart.
There is a X-GNOME-Autostart-enabled=true/false line enabling control of
this, but it obviously works only on Gnome.
I can remove the *.desktop file, but Teams will re-create it everytime it is
run!
Files run in .config/autostart are run before those in .trinity/autostart.
Old style scripting in rc.local seems deprecated on Debian (Buster here).
I've managed to create a systemd script to remove the desktop file at boot,
which mostly satisfies my needs as I seldom just unlog, but I was wondering
if there is a way to run a script when I log out (I have tried .bash_logout
but it does not work)?
Thierry
On 2022-01-11 15:55:39 Mike Bird wrote:
> On Tue January 11 2022 13:14:28 J Leslie Turriff wrote:
> > Can anyone explain why using Kmail's "Reply to Author" sends the reply
> > to its mailing list instead? (I'm guessing it's a "feature" of the
> > mailing list software.)
>
> Hi Leslie,
>
> The embedded email has a "Reply-To: rexxla-members(a)groups.io"
> which most likely came from the configuration of that mailing
> list's software.
>
> You might find that you can reply-to-all and then delete the
> mailing list address when you want to reply off list.
>
> --Mike
> ____________________________________________________
> tde-users mailing list -- users(a)trinitydesktop.org
> To unsubscribe send an email to users-leave(a)trinitydesktop.org
> Web mail archive available at
> https://mail.trinitydesktop.org/mailman3/hyperkitty/list/users@trinitydeskt
>op.org
That's what I'm thinking, too; it only seems to happen with that list. I'll try setting
an additional action to fix it as mail comes in from there.
But unfortunately, in Configure Filters... there is no way to refer to the content of one
header field (From) when changing another (Reply-To), and no DCOP actions at all for
filtering. :-(
Leslie
--
Operating System: Linux
Distribution: openSUSE Leap 15.3 x86_64
Desktop Environment: Trinity
Qt: 3.5.0
TDE: R14.0.10
tde-config: 1.0
Can anyone explain why using Kmail's "Reply to Author" sends the reply to its mailing
list instead? (I'm guessing it's a "feature" of the mailing list software.)
Leslie
On Sunday 09 January 2022 10:35:55 am William Morder via tde-users wrote:
>
> [Whatever Software] now collects and
> shares our data. Even though it is used almost entirely offline, requires
> no connection for actual users working at home.
Link:
https://serverfault.com/questions/550276/how-to-block-internet-access-to-ce…
I had an issue with the instructions in the above link. Including my
(programmer pidgin) notes as well, which should allow you to just
find/replace michael for your username.
Best,
Michael
Block internet access
:As root:
iptables -L
cat /etc/group
groupadd nointernet
cat /etc/group
usermod -a -G nointernet michael
ll /usr/bin/no*
nano /usr/bin/nointernet
chmod +x /usr/bin/nointernet
ll /etc/network/if-pre-up.d
nano /etc/network/if-pre-up.d/iptables_nointernet_rule
ll /etc/network/if-pre-up.d/iptables_nointernet_rule
chmod +x /etc/network/if-pre-up.d/iptables_nointernet_rule
ll /etc/network/if-pre-up.d/iptables_nointernet_rule
ll /usr/bin/no*
cat /etc/network/if-pre-up.d/iptables_nointernet_rule
/etc/network/if-pre-up.d/iptables_nointernet_rule
# cat /etc/network/if-pre-up.d/iptables_nointernet_rule
#!/bin/bash
# iptables -A OUTPUT -m owner --gid-owner nointernet -j DROP
iptables -I OUTPUT 1 -m owner --gid-owner nointernet -j DROP
# cat /usr/bin/nointernet
#!/bin/bash
COMMAND="$1"
shift
for arg; do
COMMAND="$COMMAND \"$arg\""
done
sg nointernet "$COMMAND"
:Menu Entry
nointernet smplayer %U
Notes:
NAME
sg - execute command as different group ID
SYNOPSIS
sg [-] [group [-c ] command]
DESCRIPTION
The sg command works similar to newgrp but accepts a command. The
command will be executed with the /bin/sh shell. With most shells you may run
sg from, you need to enclose multi-word commands in quotes. Another
difference between newgrp and sg is that some shells treat newgrp specially,
replacing themselves with a new instance of a shell that newgrp creates. This
doesn't happen with sg, so upon exit from a sg command you are returned to
your previous group ID.