After having setup their repository,
these two commands made it install and running in both Kde and Xfce:and if running in plasma additionally this(which may have not been needed, b/c it's preinstalled already.)
Note, the connections do require to get the secrects stored
within either of the "Secret Storage" available, which is on Plasma KWallet
and otherwise Gnome Keyring.
Here shown with Gnome-keyring: KWallet would have a similar picture, like this: If no Secret Storage have been enabled (or the dbus query to the storage hangs) it may
hang with an authenticantion popup, get manually entered the secret-connection key.
FWIW, just in case, a script to install Proton VPN on MX Linux:Also as zip file attached: install-proton-vpn-240626-02.zip
these two commands made it install and running in both Kde and Xfce:
Code:
sudo apt install --install-recommends gir1.2-ayatanaappindicator3-0.1 proton-vpn-gnome-desktop
Code:
pgrep -x plasmashell && sudo apt install libkf5wallet-bin
Note, the connections do require to get the secrects stored
within either of the "Secret Storage" available, which is on Plasma KWallet
and otherwise Gnome Keyring.
Here shown with Gnome-keyring: KWallet would have a similar picture, like this: If no Secret Storage have been enabled (or the dbus query to the storage hangs) it may
hang with an authenticantion popup, get manually entered the secret-connection key.
FWIW, just in case, a script to install Proton VPN on MX Linux:
Code:
#!/bin/bash# Script to install Proton VPN on MX Linux## File: install-proton-vpn.sh# Date: Wed Jun 26, 2024# fehlix at mxlinux# MX Linux forum: # https://forum.mxlinux.org/viewtopic.php?p=780943#p780943#VERSION="240626-02"# check root(( $(id -u) )) && exec sudo "$0"# use nala if availablecommand -v nala && APT=nala || APT=apt# some temp stuffAPT_TMP_DIR=$(mktemp -d /tmp/protonvpn-stable-tempdir_XXXXXXXXXXXXX)APT_TMP_LST=$(mktemp /etc/apt/sources.list.d/protonvpn-stable-temp_XXXXXXXXXXXXX.list)chmod 755 ${APT_TMP_DIR}tidy_up() { rm -r $APT_TMP_DIR 2>/dev/null rm $APT_TMP_LST 2>/dev/null }trap tidy_up EXITTMP_PUBLIC_KEY=${APT_TMP_DIR}/public_key.asccurl -RLJ -o ${TMP_PUBLIC_KEY} https://repo.protonvpn.com/debian/public_key.asc$APT updatedpkg -l | grep -q protonvpn-stable-release && apt purge protonvpn-stable-release --yes[ -f /etc/apt/sources.list.d/protonvpn-stable.list ] && rm /etc/apt/sources.list.d/protonvpn-stable.listecho "deb [arch=all signed-by=${TMP_PUBLIC_KEY}] https://repo.protonvpn.com/debian stable main" | tee ${APT_TMP_LST}$APT update$APT install protonvpn-stable-releaserm ${APT_TMP_LST}$APT update$APT install --install-recommends gir1.2-ayatanaappindicator3-0.1 proton-vpn-gnome-desktop# Kde/Plasmapgrep -x plasmashell && $APT install libkf5wallet-binexit
Statistics: Posted by fehlix — Wed Jun 26, 2024 1:39 pm