this post was submitted on 24 Oct 2024
46 points (97.9% liked)

Linux

5143 readers
544 users here now

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 1 year ago
MODERATORS
 

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.

top 3 comments
sorted by: hot top controversial new old
[–] Lemongrab@lemmy.one 1 points 4 days ago* (last edited 4 days ago) (1 children)

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 the tee (append) command, which requests to run with root permissions and appends the file to the specified path. pkexec is useful instead of plain sudo because if the current user isn't in wheel/sudo groul it requests the local admin account to authenticate.

[–] boredsquirrel 1 points 3 days ago (1 children)

That is nice, I will update it

[–] Lemongrab@lemmy.one 1 points 3 hours ago

Replying to remind you.