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.

  • adr1an@programming.devM
    link
    fedilink
    arrow-up
    1
    ·
    2 days ago

    Cool. Btw, I’m using gluetun container, and sending through VPN only a few containarrs. It’s just another take, instead of running the VPN connection on the OS level and then whitelisting apps for exclusion.

  • Lemongrab@lemmy.one
    link
    fedilink
    arrow-up
    2
    arrow-down
    2
    ·
    edit-2
    21 days ago

    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.