Package Details: mozwire 0.8.1-1

Git Clone URL: https://aur.archlinux.org/mozwire.git (read-only, click to copy)
Package Base: mozwire
Description: A cross-platform client for MozillaVPN
Upstream URL: https://github.com/NilsIrl/MozWire
Keywords: mozilla vpn
Licenses: GPL3
Submitter: JohnMoon
Maintainer: JohnMoon (NilsIRL)
Last Packager: NilsIRL
Votes: 5
Popularity: 0.000000
First Submitted: 2020-08-18 04:20 (UTC)
Last Updated: 2023-02-14 02:45 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

jayelbe commented on 2023-05-15 11:51 (UTC) (edited on 2023-05-17 12:15 (UTC) by jayelbe)

Works a treat!

I used this command to create config files for all available relays:

 mozwire relay save -n0

And then this command to bulk import them into network manager:

 for f in ./*.conf; do

   nmcli c import type wireguard file "$f"

   done

It worked a little too well. Turns out nmcli activates each connection after importing it, so I ended up with 406 active VPN connections. Whoops!

I disconnected them all, and then used this command to modify the connections so they won't automatically reconnect:

for f in $(nmcli -f name,type c|grep wireguard|cut -f 1 -d\ ); do nmcli c mod "$f" connection.autoconnect no ; done