Just made a dedicated repo about a bunch of tricks I regularly use.
A KDE Plasmoid is definetly missing on that list. Having it work without garbage Electron, at least most of the time, is crucial.
The one-line command I recommend for install Mullvad’s RPM repo is as follows:
curl --tlsv1.3 -fsS https://repository.mullvad.net/rpm/stable/mullvad.repo | pkexec tee -a "/etc/yum.repos.d/mullvad.repo"
My explanation: This
curl
command enforces strong TLS encryption and pipes the fetched repo file to thetee
(append) command, which requests to run with root permissions and appends the file to the specified path.pkexec
is useful instead of plainsudo
because if the current user isn’t in wheel/sudo groul it requests the local admin account to authenticate.https://github.com/boredsquirrel/MullvadVPN-Tricks/commit/decdb5e0c66406519f0c83827ab9ee508e8ddce6
Thanks! Not sure why you used tee -a, isnt that append?
I used tee -a because that is how I have seen it recommended. If it works without then do that instead.
I checked, -a is append and if that file already exists it would write the stuff to the end of it again.
> is the correct one
That is nice, I will update it
Replying to remind you.